How to cast the value entered in a textbox to integer
VB.NET Int32.Parse(TextBox1.Text) C# Int32.Parse(TextBox1.Text);
How to display a Wait page while a query is running
Refer Asynchronous Wait State Pattern in ASP.NET
How to get the IP address of the host accessing my site
VB.NET Response.Write (Request.UserHostAddress.ToString ()) C# Response.Write (Request.UserHostAddress.ToString ());
How to prevent a button from validating it’s form
Set the CauseValidation property of the button control to False
What is the equivalent of date() and time() in ASP.NET
VB.NET System.DateTime.Now.ToShortDateString() System.DateTime.Now.ToShortTimeString() C# System.DateTime.Now.ToShortDateString(); System.DateTime.Now.ToShortTimeString();