有关ASP.NET上传后台程序(修正版)
代码:
<%@ Import Namespace="System.Data" %>
<%@ Import Namespace="System.Data.SqlClient" %>
<script language="C#" runat=server>
//上传目录设置;
string saveToFolder = "saveFiles";
private void Page_Load(object sender, System.EventArgs e)
{
HttpFileCollection uploadedFiles = Request.Files;
string Path = Server.MapPath(saveToFolder);
for(int i = 0 ; i < uploadedFiles.Count ; i++)
{
HttpPostedFile F = uploadedFiles[i];
if(uploadedFiles[i] != null && F.ContentLength > 0)
{
string newName = F.FileName.Substring(F.FileName.LastIndexOf("\\") + 1);
F.SaveAs(Path + "/" + newName);
}
}
}
</script>
把上传代码保存成upload.aspx文件就可以了;
注重点:
1、要把“上传目录”的安全属性设置成答应“ASPNET”用户写入操作的权限;
2、要在“Web.config”文件内添加“<httpRuntime maxRequestLength="122880" executionTimeout="10000" />”来设置上传文件的大小限制,默认上传文件大小只有4M;
3、有关httpRuntime参数说明:
maxRequestLength:指示 ASP.NET 支持的HTTP方式上载的最大字节数。该限制可用于防止因用户将大量文件传递到该服务器而导致的拒绝服务攻击。指定的大小以 KB 为单位。默认值为 4096 KB (4 MB)。executionTimeout:指示在被 ASP.NET 自动关闭前,答应执行请求的最大秒数。在当文件超出指定的大小时,假如浏览器中会产生 DNS 错误或者出现服务不可得到的情况,也请修改以上的配置,把配置数加大。
其他Web后台程序:
http://www.klstudio.com/post/54.html