摘要: 匹配中文字符的正则表达式: [\u4e00-\u9fa5]
匹配双字节字符(包括汉字在内):[^\x00-\xff]
应用:计算字符串的长度(一个双字节字符长度计2,ASCII字符计1)
阅读全文
在微软官网下载
下载地址:http://download.microsoft.com/download/3/2/4/324c0fda-1122-49e9-9367-c40290524758/OrcasBeta2VSTSCHSX1398191.img
3.47G的大小
我自己安装时在安装到Web Design Tools时报错。
原来机子上我装了VS2005 TS 和VS2008 beta2英文版,删除了2008,还是不行,删了2005,也不行
去微软网站上看了下好象要把原来的.net framework 全删掉。然后就从1。0删到3.5,然后就不知道了我睡着了
醒来一看安装完成J
摘要: //显示JavaScript的Alert信息
public static void ShowMsg(Page thisPage, string AlertMessage)
{
Literal txtMsg = new Literal();
txtMsg.Text = "" + "
";
thisPage.Controls.Add(txtMsg);
}
阅读全文