上一页 1 2 3 4 5 6 7 ··· 15 下一页
摘要: 如果将ContentType设置为application/octet-stream,那么在浏览器中会自动下载,需要将ContentType设置为对应类型 还有一种是设置了错误的参数,去掉文件名即可 public ActionResult Image() { string filePath = "D: 阅读全文
posted @ 2023-09-19 15:12 奇迹之耀 阅读(51) 评论(0) 推荐(0) 编辑
摘要: public ActionResult Image() { string filePath = "D:\\123.png"; Response.Cache.SetExpires(DateTime.Now.AddDays(365)); // 缓存有效期为365天 Response.Cache.SetC 阅读全文
posted @ 2023-09-19 15:03 奇迹之耀 阅读(38) 评论(0) 推荐(0) 编辑
摘要: c++中的函数名称在编译后改变了,需要利用dumpbin.exe找到编译后的名字 dumpbin.exe在VS安装目录 参考路径:C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.299 阅读全文
posted @ 2023-07-26 16:09 奇迹之耀 阅读(257) 评论(0) 推荐(0) 编辑
摘要: 代码示例如下 <div id="a" style="display: flex; justify-content: center; align-items: center;width:200px;height:100%;background:skyblue" > <div id="b" style= 阅读全文
posted @ 2023-07-06 09:28 奇迹之耀 阅读(191) 评论(0) 推荐(0) 编辑
摘要: 禁止选中 user-select: none; -webkit-user-select: none; -moz-user-select: none; 禁止元素拖拽 ondragstart="return false;" 阅读全文
posted @ 2023-06-28 18:29 奇迹之耀 阅读(50) 评论(0) 推荐(0) 编辑
摘要: function PaintText(x, y, color, size, text, toLeft) { if (toLeft == undefined) { toLeft = true; } y += size;ctx.font = "normal " + size+"px arial";ctx 阅读全文
posted @ 2023-06-15 16:29 奇迹之耀 阅读(205) 评论(0) 推荐(0) 编辑
摘要: CookieContainer cookieContainer = new CookieContainer();//创建CookieContainer Cookie cookie1 = new Cookie("pac_uid","0_8535fa0a41922","/","qq.com"); coo 阅读全文
posted @ 2023-06-15 14:40 奇迹之耀 阅读(815) 评论(0) 推荐(0) 编辑
摘要: var textarea=$("textarea[name=xxx]") //获取光标位置 var index = textarea.prop("selectionStart"); //设置光标位置 textarea.prop("selectionStart", index); textarea.p 阅读全文
posted @ 2023-06-02 15:38 奇迹之耀 阅读(252) 评论(0) 推荐(0) 编辑
摘要: window.onbeforeunload = function () { return true } 如果不需要给出提示的话,只需要不执行return true即可 需要注意的是,在chrome浏览器测试时发现,需要至少在网页中点击过一次才能正确触发此事件 阅读全文
posted @ 2023-06-02 13:40 奇迹之耀 阅读(200) 评论(0) 推荐(0) 编辑
摘要: <script> function ImgToBase64(img) { var canvas = document.createElement('canvas');var ctx = canvas.getContext('2d');canvas.height = img.height;canvas 阅读全文
posted @ 2023-05-22 11:31 奇迹之耀 阅读(234) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 15 下一页