最新文章專題視頻專題問答1問答10問答100問答1000問答2000關(guān)鍵字專題1關(guān)鍵字專題50關(guān)鍵字專題500關(guān)鍵字專題1500TAG最新視頻文章推薦1 推薦3 推薦5 推薦7 推薦9 推薦11 推薦13 推薦15 推薦17 推薦19 推薦21 推薦23 推薦25 推薦27 推薦29 推薦31 推薦33 推薦35 推薦37視頻文章20視頻文章30視頻文章40視頻文章50視頻文章60 視頻文章70視頻文章80視頻文章90視頻文章100視頻文章120視頻文章140 視頻2關(guān)鍵字專題關(guān)鍵字專題tag2tag3文章專題文章專題2文章索引1文章索引2文章索引3文章索引4文章索引5123456789101112131415文章專題3
問答文章1 問答文章501 問答文章1001 問答文章1501 問答文章2001 問答文章2501 問答文章3001 問答文章3501 問答文章4001 問答文章4501 問答文章5001 問答文章5501 問答文章6001 問答文章6501 問答文章7001 問答文章7501 問答文章8001 問答文章8501 問答文章9001 問答文章9501
當(dāng)前位置: 首頁 - 科技 - 知識(shí)百科 - 正文

實(shí)現(xiàn)ASP.NET多文件上傳程序代碼

來源:懂視網(wǎng) 責(zé)編:小采 時(shí)間:2020-11-27 22:45:17
文檔

實(shí)現(xiàn)ASP.NET多文件上傳程序代碼

實(shí)現(xiàn)ASP.NET多文件上傳程序代碼:upload.aspx 代碼如下:<%@ Page language=c# Codebehind=UpLoad.aspx.cs AutoEventWireup=false Inherits=WebPortal.Upload %> <!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0 T
推薦度:
導(dǎo)讀實(shí)現(xiàn)ASP.NET多文件上傳程序代碼:upload.aspx 代碼如下:<%@ Page language=c# Codebehind=UpLoad.aspx.cs AutoEventWireup=false Inherits=WebPortal.Upload %> <!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0 T

upload.aspx
代碼如下:


<%@ Page language="c#" Codebehind="UpLoad.aspx.cs" AutoEventWireup="false" Inherits="WebPortal.Upload" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
<HTML>
<HEAD>
<title>多文件上傳</title>
<script language="JavaScript">
function addFile()
{
var str = '<INPUT type="file" size="50" NAME="File">'
document.getElementById('MyFile').insertAdjacentHTML("beforeEnd",str)
}
</script>
</HEAD>
<body>
<form id="form1" method="post" runat="server" enctype="multipart/form-data">
<div align="center">
<h3>多文件上傳</h3>
<P id="MyFile"><INPUT type="file" size="50" NAME="File"></P>
<P>
<input type="button" value="增加(Add)" onclick="addFile()">
<input onclick="this.form.reset()" type="button" value="重置(ReSet)">
<asp:Button Runat="server" Text="開始上傳" ID="UploadButton"></asp:Button>
</P>
<P>
<asp:Label id="strStatus" runat="server" Font-Names="宋體" Font-Bold="True" Font-Size="9pt"
Width="500px" BorderStyle="None" BorderColor="White"></asp:Label>
</P>
</div>
</form>
</body>
</HTML>

upload.aspx.cs
代碼如下:

using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;
namespace WebPortal
{
/// <summary>
/// UpLoad 的摘要說明。
/// 實(shí)現(xiàn)多文件上傳
/// </summary>
public class Upload : System.Web.UI.Page
{
protected System.Web.UI.WebControls.Button UploadButton;
protected System.Web.UI.WebControls.Label strStatus;
private void Page_Load(object sender, System.EventArgs e)
{
/// 在此處放置用戶代碼以初始化頁面
if (this.IsPostBack) this.SaveImages();
}
private Boolean SaveImages()
{
///'遍歷File表單元素
HttpFileCollection files = HttpContext.Current.Request.Files;
/// '狀態(tài)信息
System.Text.StringBuilder strMsg = new System.Text.StringBuilder();
strMsg.Append("上傳的文件分別是:<hr color=red>");
try
{
for(int iFile = 0; iFile < files.Count; iFile++)
{
///'檢查文件擴(kuò)展名字
HttpPostedFile postedFile = files[iFile];
string fileName, fileExtension;
fileName = System.IO.Path.GetFileName(postedFile.FileName);
if (fileName != "")
{
fileExtension = System.IO.Path.GetExtension(fileName);
strMsg.Append("上傳的文件類型:" + postedFile.ContentType.ToString() + "<br>");
strMsg.Append("客戶端文件地址:" + postedFile.FileName + "<br>");
strMsg.Append("上傳文件的文件名:" + fileName + "<br>");
strMsg.Append("上傳文件的擴(kuò)展名:" + fileExtension + "<br><hr>");
///'可根據(jù)擴(kuò)展名字的不同保存到不同的文件夾
///注意:可能要修改你的文件夾的匿名寫入權(quán)限。
postedFile.SaveAs(System.Web.HttpContext.Current.Request.MapPath("images/") + fileName);
}
}
strStatus.Text = strMsg.ToString();
return true;
}
catch(System.Exception Ex)
{
strStatus.Text = Ex.Message;
return false;
}
}
#region Web 窗體設(shè)計(jì)器生成的代碼
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: 該調(diào)用是 ASP.NET Web 窗體設(shè)計(jì)器所必需的。
//
InitializeComponent();
base.OnInit(e);
}
/// <summary>
/// 設(shè)計(jì)器支持所需的方法 - 不要使用代碼編輯器修改
/// 此方法的內(nèi)容。
/// </summary>
private void InitializeComponent()
{
this.ID = "Upload";
this.Load += new System.EventHandler(this.Page_Load);
}
#endregion
}
}

聲明:本網(wǎng)頁內(nèi)容旨在傳播知識(shí),若有侵權(quán)等問題請(qǐng)及時(shí)與本網(wǎng)聯(lián)系,我們將在第一時(shí)間刪除處理。TEL:177 7030 7066 E-MAIL:11247931@qq.com

文檔

實(shí)現(xiàn)ASP.NET多文件上傳程序代碼

實(shí)現(xiàn)ASP.NET多文件上傳程序代碼:upload.aspx 代碼如下:<%@ Page language=c# Codebehind=UpLoad.aspx.cs AutoEventWireup=false Inherits=WebPortal.Upload %> <!DOCTYPE HTML PUBLIC -//W3C//DTD HTML 4.0 T
推薦度:
標(biāo)簽: 上傳 實(shí)現(xiàn) 代碼
  • 熱門焦點(diǎn)

最新推薦

猜你喜歡

熱門推薦

專題
Top