2007年3月1日

摘要: 原文链接:http://msdn.microsoft.com/msdnmag/issues/05/11/DataPoints/default.aspx MSDN2005年11月刊登载了John Papa的一篇文章《DataSet and DataTable in ADO.NET 2.0》,详细介绍了ADO.Net 2.0的一些新功能和特性,对于利用ADO.NET开发的程序员来说,是值得关注的。现... 阅读全文
posted @ 2007-03-01 22:19 ADAMS 阅读(932) 评论(1) 推荐(0)
 
摘要: 用分解字符的方法实现:static bool IsNumeric(string str) { if (str==null || str.Length==0) return false; foreach(char c in str) { if (!Char.IsNumber(c)) { return false; } } r... 阅读全文
posted @ 2007-03-01 22:17 ADAMS 阅读(181) 评论(0) 推荐(0)
 
摘要: using System;using System.Data;using System.Configuration;using System.Web;using System.Web.Security;using System.Web.UI;using System.Web.UI.WebControls;using System.Web.UI.WebControls.WebParts;using ... 阅读全文
posted @ 2007-03-01 22:09 ADAMS 阅读(194) 评论(0) 推荐(0)