摘要: #region 执行cmd命令 /// <summary> /// 执行cmd命令 /// </summary> /// <param name="commandText"></param> /// <returns></returns> private string ExeCommand(stri 阅读全文
posted @ 2017-07-31 17:03 凤山朱德 阅读(476) 评论(0) 推荐(0) 编辑
只有注册用户登录后才能阅读该文。 阅读全文
posted @ 2017-02-06 16:04 凤山朱德 阅读(47) 评论(0) 推荐(0) 编辑
摘要: select col.table_name,col.column_name from information_schema.table_constraints tab, information_schema.constraint_column_usage col where col.constrai 阅读全文
posted @ 2018-08-28 17:54 凤山朱德 阅读(3239) 评论(0) 推荐(0) 编辑
摘要: 邮箱验证: public static readonly string Email = @"^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$ 阅读全文
posted @ 2018-04-27 09:02 凤山朱德 阅读(232) 评论(0) 推荐(0) 编辑
摘要: exec sp_helptext SVB_ListLoopBOutCREATE PROCEDURE SVB_ListLoopBOut @CompanyName VarChar(64), @DeliverSN VarChar(32), @GBOutHID VarChar(32), @Status In 阅读全文
posted @ 2018-03-14 16:46 凤山朱德 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 添加下面这个类 public static class GetAllAttribute<T> where T : class { public static string Names; public static string Values; public static ArrayList arra 阅读全文
posted @ 2018-03-13 16:45 凤山朱德 阅读(750) 评论(0) 推荐(0) 编辑
摘要: 需要引用NPOI.dll程序集和Ionic.Zip.dll程序集 string[] headerRowName = { "序号", "地市", "镇街", "企业名称", "监控类型", "企业联网负责人", "企业联网负责人手机号", "环保督办人", "环保督办人联系电话", "所属重点行业", 阅读全文
posted @ 2017-09-12 14:36 凤山朱德 阅读(2349) 评论(0) 推荐(0) 编辑
摘要: if (!string.IsNullOrEmpty(order) && !string.IsNullOrEmpty(dir))//判断排序的字段名称和排序的类型是否为空 { if (dir.Equals("asc")) { list1 = listData.OrderBy(p => GetPrope 阅读全文
posted @ 2017-07-06 14:09 凤山朱德 阅读(403) 评论(0) 推荐(0) 编辑
摘要: 1.head表签引用 这两个文件即可 2.复制下面的代码到webform中的head标签中 <script> $(function () { //提示信息 var lang = { "sProcessing": "处理中...", "sLengthMenu": "每页 _MENU_ 项", "sZe 阅读全文
posted @ 2017-07-05 17:31 凤山朱德 阅读(5690) 评论(0) 推荐(0) 编辑
摘要: 实现的效果是用form1打开form2,点击form2窗口的按钮,讲form2的文本框中的值赋值个form1的文本框:代码截图如下: 1、form2: 2、form1 3、效果图: 阅读全文
posted @ 2017-04-14 14:02 凤山朱德 阅读(156) 评论(0) 推荐(0) 编辑
摘要: 1、创建一个多线程执行方法有相同类型返回值和相同类型参数的委托(创建在类外) public delegate string FunctionDelegate(string str); 多线程执行的方法如下: public string GetName(string name) // 函数 { ret 阅读全文
posted @ 2017-04-14 11:42 凤山朱德 阅读(1589) 评论(0) 推荐(0) 编辑