我的aspx 页面中有一个asp FileUpload 控件。
以及检查文件扩展名然后将它们插入数据库的代码:
private string Write(HttpPostedFile file, string table)
{
string fileNameMain = Path.GetFileName(file.FileName);
// check for the valid file extension
string fileExtension = Path.GetExtension(fileNameMain).ToLower();
if (fileExtension.Equals(".pdf") || fileExtension.Equals(".doc"))
{
...insert fileupload into database
}
else
{
LabelError.Text = "Extension of files are not allowed.";
return null;
}
}
使用上面的代码,它会检查扩展名,然后"Extension of files are not allowed."
在LabelError
不允许上传文件的情况下显示消息。
现在,我需要以check-extension
另一种方式执行“”:此时客户端单击并选择 FileUpload,alert
显示“ Extension of files are not allowed.
”。
我需要一种方法来在浏览器中选择 FileUpload 时发出警报。帮助!!!!