public static HttpServerUtility
GetCurrentServerInformation()
{
return
HttpContext.Current.Server;
}
public static HttpRequest
GetCurrentHttpRequestInformation()
{
return
HttpContext.Current.Request;
}
public static HttpResponse
GetCurrentHttpResponseInformation()
{
return
HttpContext.Current.Response;