09 2023 档案
摘要:$("#Content").focus(); // 创建 img 元素var img = document.createElement('img');img.src = 'xxxx';img.style.display = 'block'; // 插入 img 元素 if (window.getSe
阅读全文
摘要:如果将ContentType设置为application/octet-stream,那么在浏览器中会自动下载,需要将ContentType设置为对应类型 还有一种是设置了错误的参数,去掉文件名即可 public ActionResult Image() { string filePath = "D:
阅读全文
摘要:public ActionResult Image() { string filePath = "D:\\123.png"; Response.Cache.SetExpires(DateTime.Now.AddDays(365)); // 缓存有效期为365天 Response.Cache.SetC
阅读全文