Posted on: 6/10/2015 10:47:00 AM | Views : 599

Hi,
I have a table where I store Employee Data. What I want is.
Whenever I select the Employeename from the dropdownlist its related employee code should come in the next textbox. Both Employee Name and Empcode are their in One table. 
Here is my code:-
<tr> <td> <asp:Label ID="lblEmpName" runat="server" Text="Employee Name" Visible="true"></asp:Label> &nbsp; <asp:DropDownList ID="ddlEmployeeName" runat="server" AutoPostBack="true" Width="150"> </asp:DropDownList> </td> </tr> <tr> <td> <asp:Label ID="lblEmpCardNo" runat="server" Text="Employee Card No" Visible="tru ...

Go to the complete details ...