上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 75 下一页
  2021年4月25日
摘要: 上代码: 在 Global.asax 文件中: //在接收到一个应用程序请求时触发。对于一个请求来说,它是第一个被触发的事件,请求一般是用户输入的一个页面请求(URL)。 void Application_BeginRequest(object sender, EventArgs e) { //Re 阅读全文
posted @ 2021-04-25 23:56 z5337 阅读(1403) 评论(0) 推荐(1)
摘要: 1、正则:\d{17}[\d|X]|\d{15} 2、校验: using System; /// <summary> /// Summary description for IDCardValid /// </summary> public class IDCardValid {/// <summa 阅读全文
posted @ 2021-04-25 23:51 z5337 阅读(280) 评论(0) 推荐(0)
摘要: 直接上代码: using System; using System.Data; using System.Configuration; using System.Collections; using System.Web; using System.Web.Security; using Syste 阅读全文
posted @ 2021-04-25 23:49 z5337 阅读(140) 评论(0) 推荐(0)
摘要: 参考:https://blog.csdn.net/weixin_36397141/article/details/106437814 先上成功截图: 下载时进度一直为0时,可以在此路径查看日志文件: C:\Users\Administrator\AppData\Local\Temp\dd_vs_en 阅读全文
posted @ 2021-04-25 18:31 z5337 阅读(545) 评论(0) 推荐(0)
  2021年4月18日
摘要: 实现了提示控件(picture1)随着鼠标而移动,但点击时仍会显示(是一个BUG) 需要绑定事件到 form、panel1、picture1、等控件 private void panel1_MouseMove(object sender, MouseEventArgs e) { //timer1.S 阅读全文
posted @ 2021-04-18 22:08 z5337 阅读(123) 评论(0) 推荐(0)
  2021年2月4日
摘要: 参考:http://www.voidcn.com/article/p-mckvczfj-ov.html 解决 Oracle 数据库文件自动扩展到 32G 后报错 ORA-01563 的问题 create or replace procedure auto_add_datafile is ALL_fi 阅读全文
posted @ 2021-02-04 18:11 z5337 阅读(394) 评论(0) 推荐(0)
  2021年1月30日
摘要: 转自:https://www.cnblogs.com/heibai-ma/p/13675068.html -- 创建exec(sqlstring)函数方便执行 CREATE OR REPLACE FUNCTION "public"."exec"("sqlstring" varchar) RETURN 阅读全文
posted @ 2021-01-30 09:21 z5337 阅读(290) 评论(0) 推荐(0)
  2021年1月19日
摘要: 在 SQL Server 中建表时的自增列: Create table tmp1 ( id int identity(1,1) primary key, .... ) 而在 Oracle 中想要自增列,需要建触发器,如下所示: Create table tmp1 ( id int primary k 阅读全文
posted @ 2021-01-19 14:06 z5337 阅读(133) 评论(0) 推荐(0)
  2021年1月7日
摘要: 一段很有用的代码: $('#workDay').bind('input propertychange', function () { hui.toast('日期变化:' + $('#workDay').val()); }) 阅读全文
posted @ 2021-01-07 18:50 z5337 阅读(369) 评论(0) 推荐(0)
  2020年12月23日
摘要: 部分内容比较生硬,还需要继续优化 try { using (var package = new ExcelPackage()) { ExcelHelper.CreateExcel<ExcelInfo>(package, sheetName, title, titlesName, axs); retu 阅读全文
posted @ 2020-12-23 13:44 z5337 阅读(150) 评论(0) 推荐(0)
上一页 1 ··· 31 32 33 34 35 36 37 38 39 ··· 75 下一页