摘要:
.NET2.0抓取网页全部链接 作者:清清月儿 主页:http://blog.csdn.net/21aspnet/ 时间:2007.4.18 该方法经过对各大门户网站测试结果是抓取率100%! 效果图 后台代码: using System; using System.Data; using System.Configuration; using System.Web; ... 阅读全文
摘要:
IntroductionThis article shall describe the construction of a custom control used to play video on an ASP.NET web page. The control is based upon the Windows Media Player active X control; with it you... 阅读全文
摘要:
ASP.NET2.0 遍历文件夹下所有图片 作者:清清月儿 主页:http://blog.csdn.net/21aspnet/ 时间:2007.4.4 1.以下目录有若干图片(都是大图片) 2.在页面展现效果图 3.代码 后台代码 using System; using System.Data; using System.Configuration; using Sy... 阅读全文
摘要:
New LINQ, WCF and AJAX Labs released As part of the DinnerNow work, the team released this month the QuickStart Labs for three of the technologies used in the DinnerNow sample. In a couple of weeks t... 阅读全文
摘要:
Introduction Seems that I am going to provide instructions regarding how to face technical interviews on .NET. I am sorry but this is not the content of this article series. I have worked a lot on p... 阅读全文
摘要:
数据分页处理方法汇总(例子) 1.SET ROWCOUNT ON SELECT TOP (PAGE+1)*SIZE TABLE.* FROM TABLE WHERE ORDER BY COLUMN SET ROWCOUNT ON SIZE SELECT TABLE.* FROM TABLE WHERE ORDER BY COLUMN 特点:读出来的每页数据逆向排列 2.TOP (和第一种方法原... 阅读全文