摘要: Response.Write的字节必须大于256 private void Write(string content) { content = content.Length <= 256 ? content.PadRight(300 - content.Length,'F') : content; Response.Write(content + "\r\n"); Response.Flush(); Response.Clear(); } 阅读全文
posted @ 2012-12-06 17:18 黑冰.org 阅读(1204) 评论(0) 推荐(0) 编辑