0
我想驗證多個上傳的文件。它應該只接受.png和.jpg文件。以下是我的代碼:驗證使用asp.net進行多文件上傳C#web表單
protected void uploadFile_Click(object sender, EventArgs e)
{
if (multipleFile.HasFiles)
{
string filenameWithPath = string.Empty;
foreach (HttpPostedFile uploadedFile in multipleFile.PostedFiles)
{
filenameWithPath = System.IO.Path.Combine(
Server.MapPath("~/Uploads/"),
uploadedFile.FileName);
uploadedFile.SaveAs(filenameWithPath);
ltStatusText.Text += "File-<b>"
+ uploadedFile.FileName
+ "</b> uploaded successfully.<br>";
}
}
}
見http://stackoverflow.com/a/38790454/5836671 – VDWWD
HI zahed - 您能不能告訴我們什麼你到目前爲止已經嘗試過,描述什麼已經工作,哪些還沒有工作? –
我有多個文件上傳,我想限制只上傳JPG或PNG文件,而不是其他的擴展,谷歌搜索我沒有找到任何示例。 @VinceBowdren – zahed