摘要:
1 2 3 4 24 25 26 27 28 29 ABCDEFGasdfasfa 30 31 32 33
阅读全文
posted @ 2017-09-19 17:28
__木子
阅读(403)
推荐(0)
摘要:
Try--Catch中直接调用该方法即可。
阅读全文
posted @ 2016-12-13 18:35
__木子
阅读(149)
推荐(0)
摘要:
在Keydown事件中捕获Ctrl+V按键(e.Control And e.KeyCode = Keys.V)
阅读全文
posted @ 2016-12-13 16:58
__木子
阅读(467)
推荐(0)
摘要:
1.Response.Redirect("http://www.hao123.com",false); bool值为是否停止执行当前页 2.Server.Transfer("Default2.aspx?name=zhangsan",true); 默认情况下,Server.Transfer方法不会把表
阅读全文
posted @ 2016-05-31 13:03
__木子
阅读(1828)
推荐(0)
摘要:
select 'public '+ case t.name when 'varchar' then 'string' when 'smallint' then 'Int16' when 'int' then 'Int32' when 'datetime' then 'DateTime' when 'numeric' then 'double' else 'string' end +' '
阅读全文
posted @ 2016-05-31 10:49
__木子
阅读(420)
推荐(0)
posted @ 2016-05-31 10:46
__木子
阅读(311)
推荐(0)
摘要:
1 using System; 2 using System.IO; 3 using System.Security.Cryptography; 4 5 namespace COMMON 6 { 7 public class CodeCommon 8 { 9 #region 加密 10 const string KEY_64 =...
阅读全文
posted @ 2016-05-26 14:49
__木子
阅读(196)
推荐(0)
摘要:
1 using System; 2 using System.Configuration; 3 using System.Xml; 4 5 namespace COMMON 6 { 7 public class ConfigHelperClass 8 { 9 public string ReadConfig() 10 { 11 ...
阅读全文
posted @ 2016-05-26 14:46
__木子
阅读(235)
推荐(0)
摘要:
1 using System; 2 using System.Collections.Generic; 3 using System.Xml; 4 5 namespace COMMON 6 { 7 public class XmlHelperClass 8 { 9 public void Read() 10 { 11 ...
阅读全文
posted @ 2016-05-26 14:44
__木子
阅读(432)
推荐(0)
摘要:
1 using System; 2 using System.Data; 3 using System.IO; 4 5 namespace COMMON 6 { 7 public class CSVhelperClass 8 { 9 /// 10 /// 导出报表为Csv 11 /// 12 ...
阅读全文
posted @ 2016-05-26 14:43
__木子
阅读(800)
推荐(0)