ASP.NET CSharpe ADO.NET and Sql Server and Javascript and jquery Example that is help to programmer
Thursday, January 13, 2011
Why use Microsoft Sql server with Asp.net in Back end ?
There are many Database System Available e.g Microsoft Access, Oracle,Mysql,Microsoft SqlServer. The Main Point is that Microsoft SqlServer is Server So it can Handle multiple request at time. Oracle is also server but Microsoft SqlServer is in build install with .Net so with Oracle we need more Space that's why We Choice Microsoft SqlServer with ASP.NET Back End.
Password TextBox blank when Page Refresh or Button Click in asp.net
Password TextBox blank when Page Refresh or Button Click in asp.net
This is Very Series Problem when Register form Submit or Refresh Page or any DropDownList PostBack . Simple Solution of this Problem is
This is Very Series Problem when Register form Submit or Refresh Page or any DropDownList PostBack . Simple Solution of this Problem is
protected void Page_Load(object sender, EventArgs e)
{
txtPassword.Attributes.Add("Value", txtPassword.Text);
}
Subscribe to:
Posts (Atom)