
Archive for December, 2008
Organize “Using” in Visual Studio 2008
Posted by Sujit Kumar on December 31, 2008
Posted in .NET | Tagged: using | Leave a Comment »
Keep the value of Password textboxes after postback
Posted by Sujit Kumar on December 31, 2008
keep the value of password textbox after postback while textbox TextMode properties is “Password”
add this line on page_load event
txtPassword.Attributes.Add(“value”,txtPassword.Text);
It will keep text of password textbox while page will go for postback on server.
Posted in asp.net | Tagged: keep entered value in password textbox in asp.net after postback | Leave a Comment »