/// <summary>
 /// Initializes a new instance of the <see cref="BaseScriptService"/> class.
 /// </summary>
 public BaseScriptService()
 {
     CommonWebUI.WebUI_InjectComponent(this, EventArgs.Empty);
 }
示例#2
0
 ///<summary>
 ///Enables processing of HTTP Web requests by a custom HttpHandler that implements the <see cref="T:System.Web.IHttpHandler"></see> interface.
 ///</summary>
 ///
 ///<param name="context">An <see cref="T:System.Web.HttpContext"></see> object that provides references to the intrinsic server objects (for example, Request, Response, Session, and Server) used to service HTTP requests. </param>
 public void ProcessRequest(HttpContext context)
 {
     CommonWebUI.WebUI_InjectComponent(this, EventArgs.Empty);
     DoProcessRequest(context);
 }