DotNet Blogs

Articles of ASP.NET, C# & SQL Server

Archive for December, 2008

Organize “Using” in Visual Studio 2008

Posted by Sujit Kumar on December 31, 2008

organize using

Posted in .NET | Tagged: | 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: | Leave a Comment »