在ASP.NET中实现多文件上传

王朝c#·作者佚名  2006-12-17
窄屏简体版  字體: |||超大  

后代码:MultiUpload.aspx.vb

Public Class MultiUpload Inherits System.Web.UI.Page Protected WithEvents Upload As System.Web.UI.WebControls.Button Protected WithEvents MyTitle As System.Web.UI.WebControls.Label Protected WithEvents strStatus As System.Web.UI.WebControls.Label#Region " Web Form Designer Generated Code " 'This call is required by the Web Form Designer. Private Sub InitializeComponent() End Sub Private Sub Page_Init(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Init 'CODEGEN: This method call is required by the Web Form Designer 'Do not modify it using the code editor. InitializeComponent() End Sub#End Region Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load MyTitle.Text = "多文件上传" Upload.Text = "开始上传" If (Me.IsPostBack) Then Me.SaveImages() End Sub Private Function SaveImages() As System.Boolean '遍历File表单元素 Dim files As System.Web.HttpFileCollection = System.Web.HttpContext.Current.Request.Files '状态信息 Dim strMsg As New System.Text.StringBuilder("上传的文件分别是:") Dim iFile As System.Int32 Try For iFile = 0 To files.Count - 1 '检查文件扩展名字 Dim postedFile As System.Web.HttpPostedFile = files(iFile) Dim fileName, fileExtension As System.String fileName = System.IO.Path.GetFileName(postedFile.FileName) If Not (fileName = String.Empty) Then fileExtension = System.IO.Path.GetExtension(fileName) strMsg.Append("上传的文件类型:" + postedFile.ContentType.ToString() + "

") strMsg.Append("客户端文件地址:" + postedFile.FileName + "

") strMsg.Append("上传文件的文件名:" + fileName + "

") strMsg.Append("上传文件的扩展名:" + fileExtension + "

") '可根据扩展名字的不同保存到不同的文件夹 postedFile.SaveAs(System.Web.HttpContext.Current.Request.MapPath("images/") + fileName) End If Next strStatus.Text = strMsg.ToString() Return True Catch Ex As System.Exception strStatus.Text = Ex.Message Return False End Try End FunctionEnd Class

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
 
 
© 2005- 王朝網路 版權所有 導航