Password field lost their values
-
Hi All, Here in my application, I've 2 password fields, after filling data in these fields when i change the Dropdownlist value, page_load call autometicly and these password fields lost their values, which i need. Please help me i don't know, what to do. Regards SMK
-
Hi All, Here in my application, I've 2 password fields, after filling data in these fields when i change the Dropdownlist value, page_load call autometicly and these password fields lost their values, which i need. Please help me i don't know, what to do. Regards SMK
-
You need to make the attributes of the textboxes persistent (they retain their values):
txtPassword1.Attributes.Add("Value",txtPassword1.Text.ToString()); txtPassword2.Attributes.Add("Value",txtPassword2.Text.ToString());
Hope this helps :)Hello, Thanx for ur cooperation, its working properly. Thanx once again. Regards SMK
-
Hello, Thanx for ur cooperation, its working properly. Thanx once again. Regards SMK