文件名称:检查字符串的合法性
文件大小:5KB
文件格式:CS
更新时间:2018-11-05 02:51:47
C#
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; } }