摘要:
几种方法如下:非Web程序1.AppDomain.CurrentDomain.BaseDirectory //浏览器安装路径2.Environment.CurrentDirectory3.HttpRuntime.BinDirectoryThe path to the current application's/bin directory.Web程序HttpCurrent.Context.Serve... 阅读全文
摘要:
$ 匹配行结束符。例如正则表达式weasel$ 能够匹配字符串"He's a weasel"的末尾,但是不能匹配字符串"They are a bunch of weasels."。 ^ 匹配一行的开始。例如正则表达式^When in能够匹配字符串"When in the course of human events"的开始,但是不能匹配"What and When in the"。 * ... 阅读全文
摘要:
using System.Security.Cryptography;using System.IO;using System.text;/// <summary> /// 加密 /// </summary> /// <param name="str"></param> /// <param name="key"></param&g... 阅读全文
摘要:
SELECT name FROM syscolumnsWHERE (id =(SELECT idFROM sysobjectsWHERE (id = OBJECT_ID('列名'))))ORDER BY colid 阅读全文
摘要:
在IIS里面右键点击默认网站->主目录->应用程序设置里点配置->选项->启用会话状态->会话超时那里设置时间 在web.config中设置Session过期时间方法: C#代码 <system.web> <sessionStatemode="InProc"timeout="60"/> </system.web> aspx文件中设置... 阅读全文
摘要:
1.oncontextmenu="window.event.returnvalue=false"将彻底屏蔽鼠标右键<tableborderoncontextmenu=return(false)><td>no</table>可用于table2.<bodyonselectstart="returnfalse">取消选取、防止复制3.onpaste="re... 阅读全文
摘要:
/// <summary> /// 是否为日期型字符串 /// </summary> /// <param name="StrSource">日期字符串(2008-05-08)</param> /// <returns></returns> public static bool IsDate(string StrSource)... 阅读全文
摘要:
public static List<TBS.Model.FieldUpdate> CheckUpdateField(object o1, object o2, ref int result) { Type type1 = o1.GetType(); Type type2 = o2.GetType(); if (type1 != type2) { result = -1; return... 阅读全文