ASP.NET Server side
In this article we are reading about “ ASP.NET Server side ” . The Microsoft.NET Framework provides a rich set of server-side controls for developing Web applications. You can add these controls to WebForms pages just as you add Windows controls to a form. Server-side controls are often called server controls or Web Forms controls. There are various built in objects in ASP.NET. They are as listed below: Application Session Request Response User HttpContext Cache Trace Server object The server object is an instance of System.Web.HttpServerUtility class. It provides reference to the HttpUtilityServer class. The server object provides access to the properties and methods of the web server. Properties of server object ScriptTimeout: The request timout in seconds for the web server can be accessed or assigned. MachineName: It is the name of the server machine. Methods of server object ClearError(): The last error occurred on the server is cleared. CreateO...