白天有雨

此处应该有掌声

导航

2006年1月13日 #

.NET中各种数据库连接大全

摘要: SQL Server ODBC Standard Security:"Driver={SQL Server};Server=Aron1;Database=pubs;Uid=sa;Pwd=asdasd;" Trusted connection:"Driver={SQL Server};Server=Aron1;Database=pubs;Trusted_Connection=yes... 阅读全文

posted @ 2006-01-13 13:38 卓如 阅读(639) 评论(0) 推荐(0) 编辑

经典正则表达式

摘要: 匹配中文字符的正则表达式: [\u4e00-\u9fa5] 匹配双字节字符(包括汉字在内):[^\x00-\xff] 应用:计算字符串的长度(一个双字节字符长度计2,ASCII字符计1) String.prototype.len=function(){return this.replace([^\x00-\xff]/g,"aa").length;} 匹配空行的正则表达式:\n[\s| ]*\r 匹... 阅读全文

posted @ 2006-01-13 13:37 卓如 阅读(241) 评论(0) 推荐(0) 编辑

对虚拟目录的操作

摘要: 之前做站点发布的时候,有用到对虚拟目录的操作,今天抽时间整理了一下,大概如下: 一、查看虚拟目录是否存在 private bool IsExitesVirtualDir(string virtualdirname) { bool exited =false; DirectoryEntry _entry = new DirectoryEntry("IIS://localhost/W3SV... 阅读全文

posted @ 2006-01-13 13:35 卓如 阅读(241) 评论(0) 推荐(0) 编辑