06 2017 档案

asp.net 下载文件
摘要:private void downloadFile(string path) { System.IO.Stream iStream = null; // Buffer to read 10K bytes in chunk: byte[] buffer = new Byte[10000]; ... 阅读全文

posted @ 2017-06-09 16:08 空明流光 阅读(155) 评论(0) 推荐(0) 编辑

ScriptManager 发送错误到客户端
摘要:... 阅读全文

posted @ 2017-06-05 15:37 空明流光 阅读(191) 评论(0) 推荐(0) 编辑

C# 比较两个路径是否指向同一对象
摘要:string path1 = @"c:\test\rootpath"; string path2 = @"C:\TEST\..\TEST\ROOTPATH"; string path3 = @"C:\TeSt\RoOtPaTh\"; string file1 = Path.Combine(path1, "log.txt"); ... 阅读全文

posted @ 2017-06-01 16:21 空明流光 阅读(1508) 评论(0) 推荐(0) 编辑

IIS 集成模式 导致 AjaxPro 无法正常运行
摘要:web.config 配置如下: system.web/httphandlers system.webServer/handlers 如上配置在IIS7集成模式下没有问题,但部署到服务其它低版本服务器上会有问题。因为低版本没有集成模式,默认是经典模式。所以为了兼容老版本配置,删除system.web 阅读全文

posted @ 2017-06-01 09:28 空明流光 阅读(476) 评论(0) 推荐(0) 编辑

导航