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>
<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 ...