在web.config中配置:
複製代碼 代碼如下:
<appSettings>
<add key="FileType" value=".doc,.xls,.txt,.rar"/>
<add key="PicTureTye" value=".jpg|.gif|.png|.bmp|.psd|.svg|"/>
<add key="FileSizeLimit" value="10240"/>
</appSettings>
在.cs檔案中方法實現:
檔案大小判斷:
複製代碼 代碼如下:
public bool IsAllowableFileSize()
{
//從web.config讀取判斷檔案大小的限制
double iFileSizeLimit = Convert.ToInt32(ConfigurationManager.AppSettings["FileSizeLimit"]);
//判斷檔案是否超出了限制
if (iFileSizeLimit > FileUpload1.PostedFile.ContentLength)
{
Response.Write("檔案剛好");
return true;
}
else
{
Response.Write("檔案太大");
return false;
}
}
檔案類型:
複製代碼 代碼如下:
protected bool IsAllowableFileType(string FileName)
{
//從web.config讀取判斷檔案類型限制
string strFileTypeLimit = ConfigurationManager.AppSettings["FileType"].ToString();
//當前副檔名是否包含在這個字串中
if (strFileTypeLimit.IndexOf(Path.GetExtension(FileName).ToLower()) != -1)
{
return true;
}
else
return false;
}