public static ApplicationResponse Generate404Page(HttpRequest request, string bodyMessage, string pageHeader, string title = "Error Page")
        {
            //检查如果存在defaultPage
            if (!File.Exists(HttpApplicationManager.RootDirectory + "\\" + HttpApplicationManager.DefaultPage))
            {
                //没有数据发送回来,所以连接将关闭。
                return new ApplicationResponse(request) { Action = ResponseAction.Disconnect };
            }
            //获取文件
            byte[] page = Helper.GetFile(HttpApplicationManager.RootDirectory + "\\" + HttpApplicationManager.DefaultPage);
            string page_str = new String(Encoding.UTF8.GetChars(page));
            //与异常信息填写页面
            page_str = page_str.Replace("<%ws_title%>", title);
            page_str = page_str.Replace("<%ws_domain%>", HttpApplicationManager.CurrentDomain + ":" + HttpApplicationManager.ServicePort);
            page_str = page_str.Replace("<%ws_header%>", pageHeader);
            page_str = page_str.Replace("<%ws_message%>", bodyMessage);
            page = Encoding.UTF8.GetBytes(page_str);
            //获取pageHeader
            byte[] binheader = GetHeader(page.Length, MimeType.text_html, true, false);
            //构建响应
            byte[] completeResponse = binheader.Concat(page);
            ApplicationResponse response = new HttpResponse(completeResponse, request);
            return response;
        }

        /// <summary>
        /// 从资源提取源MimeType
        /// </summary>
        /// <param name="request"></param>
        /// <returns></returns>
        public static MimeType GetResourceMime(string request)
        {
            if (string.IsNullOrEmpty(request)) return MimeType.none;
            string[] filepats = request.Split(new string[] { "." }, StringSplitOptions.RemoveEmptyEntries);
            if (filepats.Length > 0)
            {
上一篇:ASP.net企业培训在线考试系统的设计与实现
下一篇:对我国《小企业会计准则》的思考和探索

架设Linux(2.6内核)的服务器集群【745字】

使用http协议和winsockapi实现...

WEB服务器多框架解决方案【1450字】

浅谈网站服务器安全维护技巧【2595字】

小微商家移动互联进销存...

C++IM即时通讯系统服务器端的设计+源程序

GPRS技术无人车辆DGPS定位系统服务器系统设计

承德市事业单位档案管理...

C#学校科研管理系统的设计

中国学术生态细节考察《...

国内外图像分割技术研究现状

10万元能开儿童乐园吗,我...

志愿者活动的调查问卷表

公寓空调设计任务书

AT89C52单片机的超声波测距...

神经外科重症监护病房患...

医院财务风险因素分析及管理措施【2367字】