I have a dropdownlist and a textbox which has TextMode is Password.
Whenever dropdownlist index changed the value of textbox disappear.
Anyone have a solution to fix this? Tks so much.
Update
<asp:DropDownList ID="ddlstudentstatus" runat="server" AutoPostBack="True"
onselectedindexchanged="ddlStudentstatus_SelectedIndexChanged">
</asp:DropDownList>
Posting as an answer:
My guess is that the dropdown change is causing a postback. Passwords do not persist through postbacks.