Page.Server Property
.NET Framework 3.0
Gets the Server object, which is an instance of the HttpServerUtility class.
Namespace: System.Web.UI
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
This property provides access to the frequently used HtmlEncode and MapPath methods, among others.
The following code example demonstrates how to access error information from the server by using the Server object. In particular, the example gets the requested URL from the Request object, the most recent error from the Server object (using the GetLastError method) and converts them both to strings that can be displayed by the client. Once the message variable is written to the client, the error is deleted using the ClearError method.
Community Additions
ADD
Show: