摘要: 中文:Sys.WebForms.PageRequestManagerParserErrorException:无法分析从服务器收到的消息,之所以出现此错误,常见的原因是:通过调用Response.Write()修改相应时,将启用响应筛选器、HttpModules或服务器追踪。详细信息:分析附近的“输 阅读全文
posted @ 2021-03-02 17:24 今♀妃惜彼 阅读(138) 评论(0) 推荐(0) 编辑
摘要: 1. 用Response.Write方法 代码如下: Response.Write("<script type='text/javascript'>alert("XXX");</script>"); 此方只能调用内部函数,具体调用自定义的函数只能在Response.Write写上函数定 义,比如 R 阅读全文
posted @ 2021-03-02 16:33 今♀妃惜彼 阅读(636) 评论(0) 推荐(0) 编辑
摘要: jQuery实时显示日期、时间 html: <span id="time"></span> js: <script src="Js/jquery.min.js"></script> <%--引用jQuery--%> <script type="text/javascript"> $(document 阅读全文
posted @ 2021-01-07 16:59 今♀妃惜彼 阅读(871) 评论(0) 推荐(0) 编辑
摘要: 将特定的数据始终排在第一行 第一种方式: select * from ( select Id,1 num from InquiryPurchaseProduct where Id = 50 union select Id,2 num from InquiryPurchaseProduct where 阅读全文
posted @ 2021-01-06 16:06 今♀妃惜彼 阅读(1233) 评论(0) 推荐(0) 编辑
摘要: jQuery 添加水印 <script src="../../../../AJs/jquery.min.js"></script> <script type="text/javascript"> $(document).ready(function () { var watermark_txt = 阅读全文
posted @ 2021-01-06 14:31 今♀妃惜彼 阅读(817) 评论(0) 推荐(0) 编辑
摘要: MessageBox.Show(es.Message); 这句话在发布的服务器上无法执行的。 可以替换为: Response.Write("<script type=\"text/javascript\">alert(" + es.Message + ");</script> "); https:/ 阅读全文
posted @ 2020-12-22 17:52 今♀妃惜彼 阅读(1473) 评论(0) 推荐(0) 编辑
摘要: 排名函数是SQL SERVER2005新增的函数。排名函数总共有四种,分别是:row_number、rank、 dense_rank 、ntile。 row_number:顺序生成序号。 rank:相同的序值序号相同,但序号会跳号。 dense_rank :相同的序值序号相同,序号顺序递增。 nti 阅读全文
posted @ 2020-10-15 15:14 今♀妃惜彼 阅读(5117) 评论(0) 推荐(0) 编辑
摘要: 将文件夹下的所有文件拷贝到新的文件夹下 string fullPath = @"D:\e浏览器下载\桌面壁纸"; DirectoryInfo TheFolder = new DirectoryInfo(fullPath);//fullPath是要遍历的文件目录,即源目录 foreach (FileI 阅读全文
posted @ 2020-09-22 23:19 今♀妃惜彼 阅读(131) 评论(0) 推荐(0) 编辑
摘要: Regex.Escape C# 字符串变量str 的值为"a\nb"如果直接输出显示的话,就成了:ab需要输出显示为:a\nb string str = "a\nb"; Console.WriteLine(Regex.Escape(str)); // 输出: a\nb Regex.Escape() 阅读全文
posted @ 2020-09-21 16:21 今♀妃惜彼 阅读(243) 评论(0) 推荐(0) 编辑