在线演示请访问:http://teddy.cn/test
源码及示例下载
(在本机运行示例注意将程序所在目录设为对web帐号可写,否则上传文件是会权限不足报错)
下面简单列举一下示例中的web.config和Default.aspx和Default.aspx.cs。
web.config
1
<?xml version="1.0"?>
2
<configuration>
3
<appSettings/>
4
<connectionStrings/>
5
<system.web>
6
<compilation debug="true"/>
7
<authentication mode="Windows"/>
8
<httpModules>
9
<add name="HttpUploadModule" type="Ilungasoft.Framework.Web.Modules.UploadProgressModule, Framework.Web"/>
10
</httpModules>
11
<httpRuntime maxRequestLength="1000000" executionTimeout="300"/>
12
</system.web>
13
</configuration>

2

3

4

5

6

7

8

9

10

11

12

13

Default.aspx (注意Line 17必须设置控件的UploadButtonName为页面中出发上传事件的按钮运行时生成的input标签的name属性。对于包含模版页的情况,name可能形如:ctl00$ContentPlaceHolder1$Button1)
1
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
2
3
<%@ Register Assembly="Framework.Web" Namespace="Ilungasoft.Framework.Web.UI.WebControls"
4
TagPrefix="cc1" %>
5
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
6
<html xmlns="http://www.w3.org/1999/xhtml">
7
<head id="Head1" runat="server">
8
<title>Untitled Page</title>
9
</head>
10
<body>
11
<form id="form1" runat="server">
12
<div>
13
<asp:FileUpload ID="FileUpload1" runat="server" /><br />
14
<br />
15
<asp:Button ID="Button1" runat="server" Text="Upload" OnClick="Button1_Click" /><br />
16
<br />
17
<cc1:UploadProgressBar ID="UploadProgressBar1" runat="server" UploadButtonName="Button1" UploadErrorRedirectUrl="UploadError.aspx">
18
</cc1:UploadProgressBar>
19
<br />
20
<br />
21
</div>
22
</form>
23
</body>
24
</html>

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

Default.aspx.cs
1
using System;
2
using System.Data;
3
using System.Configuration;
4
using System.Web;
5
using System.Web.Security;
6
using System.Web.UI;
7
using System.Web.UI.WebControls;
8
using System.Web.UI.WebControls.WebParts;
9
using System.Web.UI.HtmlControls;
10
11
public partial class _Default : System.Web.UI.Page
12
{
13
protected void Page_Load(object sender, EventArgs e)
14
{
15
16
}
17
protected void Button1_Click(object sender, EventArgs e)
18
{
19
FileUpload1.SaveAs(Server.MapPath("test.tmp"));
20
}
21
}

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

是不是没感觉到和使用该控件之前相比多了任何代码呢?;-)
Enjoy!