检查字符串的合法性
public static bool blnCheckNotEmpty(string strTxt) { if (string.IsNullOrWhiteSpace(strTxt)) { return false; } else { return true; } } public static bool blnCheckUploadIsPic(string strFileName) { string fileType = strFileName.Substring(strFileName.LastIndexOf(".") + 1).ToLower(); if (fileType == "gif" || fileType == "jpeg" || fileType == "png" || fileType == "jpg" || fileType == "bmp") { return true; } else { return false; } }