2021年7月14日
摘要: <body> <button id="button" type="button">下载</button> </body> <script> var a = document.getElementById("button"); a.addEventListener("click", function 阅读全文
posted @ 2021-07-14 14:23 heihaha 阅读(405) 评论(0) 推荐(0) 编辑
  2021年7月7日
摘要: 1.微信公众平台申请模板,得到模板ID 2.代码 //发送微信消息 public static object SendWechatMsg2(string archiveNames, string firststr, string content, string url, string openid, 阅读全文
posted @ 2021-07-07 16:45 heihaha 阅读(155) 评论(0) 推荐(0) 编辑
  2020年9月27日
摘要: 一、克隆项目到VS Code中 新建一个文件夹 组合键 Ctrl+` 呼出集成终端,或者点击——查看>点击集成终端(点击终端) 在终端输入代码git clone https//github.com/youname/gittest.git(或许输入账户名和密码username:xxx,pwd:yyy) 阅读全文
posted @ 2020-09-27 17:23 heihaha 阅读(221) 评论(0) 推荐(0) 编辑
  2020年4月17日
该文被密码保护。 阅读全文
posted @ 2020-04-17 15:38 heihaha 阅读(0) 评论(0) 推荐(0) 编辑
  2020年4月10日
该文被密码保护。 阅读全文
posted @ 2020-04-10 14:47 heihaha 阅读(0) 评论(0) 推荐(0) 编辑
  2020年4月3日
该文被密码保护。 阅读全文
posted @ 2020-04-03 17:22 heihaha 阅读(0) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2020-04-03 17:01 heihaha 阅读(0) 评论(0) 推荐(0) 编辑
  2019年8月30日
摘要: 这两天遇见点笑不出来的bug,真是服了,不知道咋写,瞎写的我真棒啊。 1、页面报错Exception: New transaction is not allowed because there are other threads running in the session,是在这样的场景下面: v 阅读全文
posted @ 2019-08-30 15:04 heihaha 阅读(187) 评论(0) 推荐(0) 编辑
  2019年3月15日
摘要: <!--Webconfig文件是一个xml文件,configuration是xml文件的根节点,由于xml文件的根节点只能有一个,所以Webconfig的所有配置都是在这个节点内进行的。--> <!--appSettings是应用程序设置,可以定义应用程序的全局常量设置等信息--> <appSett 阅读全文
posted @ 2019-03-15 16:21 heihaha 阅读(771) 评论(0) 推荐(0) 编辑
  2018年12月20日
摘要: 作用 stuff(param1, startIndex, length, param2)将param1中自startIndex(SQL中都是从1开始,而非0)起,删除length个字符,然后用param2替换删掉的字符。 select STUFF('abcdefg',1,0,'1234') --结果 阅读全文
posted @ 2018-12-20 16:55 heihaha 阅读(758) 评论(0) 推荐(0) 编辑