我可以上传 .jpg、.jpeg、.txt、.doc,但无法上传 .wmv 文件..即无法上传视频文件。
下面是我的代码
文件.aspx
<asp:AjaxFileUpload ID="AjaxFileUpload1" OnUploadComplete="AjaxUpload1_OnUploadComplete"
runat="server"/>
文件.cs
protected void AjaxUpload1_OnUploadComplete(object sender, AjaxControlToolkit.AjaxFileUploadEventArgs e)
{
try
{
// Generate file path
string filePath = "~/Images/" + e.FileName;
// Save upload file to the file system
AjaxFileUpload1.SaveAs(MapPath(filePath));
}
catch (Exception ex)
{
Page.ClientScript.RegisterStartupScript(this.GetType(), "Error", string.Format("<script type='text/javascript'>alert('{0}')</script>", ex.Message.ToString()));
}
}
我想知道我错在哪里......我必须在代码中添加什么才能上传视频文件