Download demo project + source files - 192 Kb
http://www.codeproject.com/aspnet/WebDrive.asp
Introduction
This article will present a full ASP.NET web application written in pure C#. You'll see……
using System;using System.IO;//用于文件存取 using System.Data;//用于数据访问 using System.Drawing;//提供画GDI+图形的基本功能 using System.Drawing.Text;//提供画GDI+图形的高级功能 using System.D ...……
c#的事件用法——实现下载时发生的事件
//下载时发出的事件
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DownloadHa ...……