上一页 1 ··· 7 8 9 10 11 12 13 14 15 下一页
  2007年9月28日
摘要: 引言 正则表达式(regular expression)就是用一个“字符串”来描述一个特征,然后去验证另一个“字符串”是否符合这个特征。比如 表达式“ab+” 描述的特征是“一个 'a' 和 任意个 'b' ”,那么 'ab', 'abb', 'abbbbbbbbbb' 都符合这个特征。 正则表达式可以用来:(1)验证字符串是否符合指定特征,比如验证是否是合法的邮件地址。(2)用... 阅读全文
posted @ 2007-09-28 20:58 迷你软件 阅读(452) 评论(0) 推荐(0) 编辑
  2007年9月24日
摘要: using System; using System.IO; using System.Collections.Generic; using System.Text; using System.Text.RegularExpressions; namespace HtmlStripTags { class HtmlHelper { private static r... 阅读全文
posted @ 2007-09-24 23:28 迷你软件 阅读(360) 评论(0) 推荐(0) 编辑
  2007年9月22日
摘要: 磁盘阵列RAID数据恢复:http://www.huifu.biz/ Pluswell热备方案:http://www.lantide.com 阅读全文
posted @ 2007-09-22 12:43 迷你软件 阅读(235) 评论(0) 推荐(0) 编辑
  2007年9月15日
摘要: DataTable的细节 DataTable是表格数据块在内存中的表示。虽然可以手动以编程形式构建一个DataTable,但通常使用DataSet和定义在System.Data.OleDb或System.Data.SqlClient命名空间中的类型,以动态获得一个DataTable。表A-7描述了DataTable中的一些核心属性。 表A-7 DataTable的属性 ... 阅读全文
posted @ 2007-09-15 15:33 迷你软件 阅读(2519) 评论(3) 推荐(0) 编辑
  2007年9月11日
摘要: using System; using System.DirectoryServices; using System.Runtime.InteropServices; using System.Security.Principal; namespace SystemFrameworks.Helper { /**//// /// 活动目录辅助类。封装一系列活动目录操作相... 阅读全文
posted @ 2007-09-11 17:20 迷你软件 阅读(373) 评论(0) 推荐(0) 编辑
摘要: A、金山词霸组件法 在金山词霸中2005中带了一个XdictGrb.dll,添加引用 废话不多说了,还是把源码放上 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Text; using System.Windows.Forms;... 阅读全文
posted @ 2007-09-11 17:01 迷你软件 阅读(905) 评论(0) 推荐(0) 编辑
摘要: static public string GetConfigiuageConnString() { Guid dataLinksGuid = new Guid("2206cdb2-19c1-11d1-89e0-00c04fd7a829"); Type dataLinksType = Type.GetTypeFromCLSID(... 阅读全文
posted @ 2007-09-11 16:56 迷你软件 阅读(265) 评论(0) 推荐(0) 编辑
摘要: 摘至:http://blog.csdn.net/net_lover/archive/2006/09/27/1291818.aspx 合并 GridView 的表头单元格 阅读全文
posted @ 2007-09-11 16:28 迷你软件 阅读(302) 评论(0) 推荐(0) 编辑
  2007年9月10日
摘要: using System.Runtime.InteropServices; using System.Management; using System; public class HardwareInfo { //取机器名 public string GetHostName() { return System.Net.Dns.GetHostName();... 阅读全文
posted @ 2007-09-10 16:00 迷你软件 阅读(868) 评论(0) 推荐(0) 编辑
摘要: 摘至:http://blog.csdn.net/wpuuuu/archive/2007/03/19/1533204.aspx using System; using System.Xml; namespace X2Blog { /**//// /// xml 的摘要说明。 /// public class XmlHandler { pr... 阅读全文
posted @ 2007-09-10 15:49 迷你软件 阅读(217) 评论(0) 推荐(0) 编辑
  2007年9月5日
摘要: 摘至:http://dev.csdn.net/author/starchenzhi/506a6b59aaa04542ae1df3c007184a36.html using System.Drawing; using System.IO; using System.Drawing.Imaging; private void AddTextToImg(string fileName,... 阅读全文
posted @ 2007-09-05 18:07 迷你软件 阅读(227) 评论(0) 推荐(0) 编辑
  2007年9月3日
摘要: 在开发所用的计算机上找到文件CRRedist2005_x86.msi 和 CRREdist2005_x86_chs.msi 默认路径:C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\BootStrapper\Packages\CrystalReports 找到后在所需部署的Web服务器上安装。 在此Web服务器上找到assembly文件夹 ... 阅读全文
posted @ 2007-09-03 17:44 迷你软件 阅读(914) 评论(0) 推荐(0) 编辑
摘要: Aspx: XML: 1 2 3 4 ~/Images/index_logo.gif 5 http://www.sohu.com 6 sohu 7 Computers 8 10 9 10 11 12 ~/Images/sina_logo2.gif 13 h... 阅读全文
posted @ 2007-09-03 15:51 迷你软件 阅读(356) 评论(0) 推荐(0) 编辑
  2007年8月31日
摘要: private void MailSend() { System.Net.Mail.SmtpClient MySmtp = new System.Net.Mail.SmtpClient("smtp.gmail.com", 587); //設定你的帳號密碼 MySmtp.Credentials = new System.Net.Netw... 阅读全文
posted @ 2007-08-31 14:05 迷你软件 阅读(347) 评论(0) 推荐(0) 编辑
  2007年8月28日
摘要: http://www.microsoft.com/china/msdn/library/office/office/aa722570.mspx?mfr=true 阅读全文
posted @ 2007-08-28 18:33 迷你软件 阅读(251) 评论(0) 推荐(0) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 下一页

本网站绝大部分资源来源于Internet,本站所有作品版权归原创作者所有!!如有以下内容:章节错误、非法内容、作者署名出错、版权疑问、作品内容有违相关法律等请及时与我联系. 我将在第一时间做出响应!本站所有文章观点不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。