Blog Reader RSS LoveCherry 技术无极限 GEO MVP MS Project开源技术
摘要: 链接:http://www.csharphelp.com/archives4/archive693.html 1GetUrls urls = new GetUrls(); urls.RetrieveUrls("http://www.microsoft.com"); 2 3 4The class is listed below. Have fun! 5//required names... 阅读全文
posted @ 2008-05-19 14:15 大宋提刑官 阅读(313) 评论(1) 推荐(0) 编辑
摘要: 链接:http://www.csharphelp.com/archives4/archive694.html From Decimal to Binary... 1using System; 2 3class Program{ 4 5 static void Main(string[] args){ 6 7 try{ 8 9 int i = (i... 阅读全文
posted @ 2008-05-19 13:10 大宋提刑官 阅读(396) 评论(0) 推荐(0) 编辑
摘要: 1Regarding on the GridView control's RowUpdating event problem, it is the 2expected behavior because when we do not associate GridView(or other 3ASP.NET 2.0 databound control) with DataSource con... 阅读全文
posted @ 2008-05-16 14:18 大宋提刑官 阅读(1121) 评论(0) 推荐(0) 编辑
摘要: 链接:http://www.codeproject.com/KB/aspnet/ImageHandler.aspx 1 2 3using System; 4using System.Drawing; 5using System.Drawing.Imaging; 6using System.IO; 7using System.Web; 8using System.We... 阅读全文
posted @ 2008-05-15 15:30 大宋提刑官 阅读(529) 评论(0) 推荐(0) 编辑
摘要: 1Entering NULL values into SQL Server 2000 using Parameterized Queries (including date columns) 2 Here's another often asked question : 3(1) The first thing to do if you have datetime columns that... 阅读全文
posted @ 2008-05-14 14:44 大宋提刑官 阅读(344) 评论(0) 推荐(0) 编辑
摘要: 链接:http://aspalliance.com/1637_Managing_Configuration_Data_Programmatically_in_ASPNET_20.all Listing 1 Configuration configuration = WebConfigurationManager.OpenWebConfiguration(Request.Applicatio... 阅读全文
posted @ 2008-05-14 10:38 大宋提刑官 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 链接:http://www.codeproject.com/KB/combobox/DataBinding_with_Enum.aspx KEY: Since SortedList is capable to sort out the item by its "keys" What I did here is for "keys" I have used the Values of Enum an... 阅读全文
posted @ 2008-05-13 11:18 大宋提刑官 阅读(235) 评论(0) 推荐(0) 编辑
摘要: 链接:http://msdn.microsoft.com/en-us/library/system.collections.sortedlist.aspx A SortedList element can be accessed by its key, like an element in any IDictionary implementation, or by its index, like ... 阅读全文
posted @ 2008-05-13 11:12 大宋提刑官 阅读(1267) 评论(2) 推荐(0) 编辑
摘要: select * from col like '%'+char(9)+'%' select * from col like '%'+char(10)+'%' select * from col like '%'+char(13)+'%' chr(10)表示换行 chr(9)表示打出一个TAB键的空格! VBscript chr(13)代表回车,chr(32)代表空格,chr(34)代... 阅读全文
posted @ 2008-05-12 22:47 大宋提刑官 阅读(860) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/cspyb/archive/2007/11/04/1865538.aspx LockType 属性 指示编辑过程中对记录使用的锁定类型。 设置和返回值 设置或返回以下某个 LockTypeEnum 的值。 常量 说明 adLockReadOnly 默认值,只读。无法更改数据。 adLockPessimistic 保守式记录锁定(逐条)。提供者执行... 阅读全文
posted @ 2008-05-12 08:41 大宋提刑官 阅读(1862) 评论(0) 推荐(0) 编辑