예제 #1
0
        public void HandleHttpRequest(System.Web.HttpApplication HttpApp)
        {
            switch (HttpApp.Request.ContentType)
            {
            case "application/x-www-form-urlencoded":
            case "application/x-www-form-urlencoded; charset=UTF-8":
                ReqFactory.HttpRequestHandler(HttpApp);
                break;

            default:
                break;
            }
        }