菜单
  

            public static byte[] GetHeader(int lenght, MimeType type, bool dropConnection, bool gzip)
            {
                string cutOffConnection = "";
                if (dropConnection)
                {
                    cutOffConnection = "\r\n" + "Connection: close";
                }
                string _type = GetStringMimeType(type);

                string header = "HTTP/1.1 200 OK" +
                 "\r\n" + "Cache-Control: private" +
                 "\r\n" + "Server: my" +
                 "\r\n" + "Content-Type: " + _type +
                 "\r\n" + "Content-Length: " + lenght +
                 (gzip ? "\r\n" + "Content-Encoding: gzip" : "") +
                 "\r\n" + "Server: vws" +
                 "\r\n" + "Date: " + String.Format("{0:r}", DateTime.Now) +
                 "\r\n\r\n";
                return Encoding.UTF8.GetBytes(header);
            }

            /// <summary>
            /// 这个函数返回一个字节数组GZIP算法压缩。
            /// </summary>
            /// <param name="data"></param>
            /// <returns></returns>
            public static byte[] CompressGZIP(byte[] data)
            {
                System.IO.MemoryStream streamoutput = new System.IO.MemoryStream();
                System.IO.Compression.GZipStream gzip = new System.IO.Compression.GZipStream(streamoutput, System.IO.Compression.CompressionMode.Compress, false);
                gzip.Write(data, 0, data.Length);
                gzip.Close();
                return streamoutput.ToArray();
            }

            /// <summary>
            /// 这个函数返回默认的错误页面,应用程序响应。
            /// </summary>
            /// <param name="request"></param>
            /// <param name="ex"></param>
            /// <returns></returns>
  1. 上一篇:ASP.net企业培训在线考试系统的设计与实现
  2. 下一篇:对我国《小企业会计准则》的思考和探索
  1. asp.ne心理测试软件系统的设计与实现

  2. 基于HTTP首部大小写变换网...

  3. 多功能代理服务器的设计与实现

  4. Linux环境下轻量级Web服务器的设计与实现

  5. Windows环境下轻量级Web服务器设计与实现

  6. php+mysql基于WebApp的志愿者...

  7. 基于EXCEL服务器的仓储管理系统的开发

  8. 乳业同业并购式全产业链...

  9. 十二层带中心支撑钢结构...

  10. 电站锅炉暖风器设计任务书

  11. java+mysql车辆管理系统的设计+源代码

  12. 当代大学生慈善意识研究+文献综述

  13. 大众媒体对公共政策制定的影响

  14. 杂拟谷盗体内共生菌沃尔...

  15. 酸性水汽提装置总汽提塔设计+CAD图纸

  16. 中考体育项目与体育教学合理结合的研究

  17. 河岸冲刷和泥沙淤积的监测国内外研究现状

  

About

751论文网手机版...

主页:http://www.751com.cn

关闭返回