Multiple image upload in Asp.net C#
HTML Coding
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:FileUpload ID="FileUpload1" runat="server" AllowMultiple="True" />
<br />
<br />
<asp:Button ID="Button1" runat="server" OnClick="Button1_Click" Text="Upload" />
<br />
</div>
</form>
</body>
</html>
C# Coding
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.IO;
public partial class ImageMultipleUpload : System.Web.UI.Page
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Button1_Click(object sender, EventArgs e)
{
HttpFileCollection imageCollection = Request.Files;
for (int i = 0; i < imageCollection.Count; i++)
{
HttpPostedFile uploadImages = imageCollection[i];
string fileName = Path.GetFileName(uploadImages.FileName);
uploadImages.SaveAs(Server.MapPath("~/images/") + fileName);
}
Response.Write("<script>alert('Image Uploded')</script>");
}
}
No comments:
Post a Comment