Ejemplo n.º 1
0
 public static bool IsPostedFileIsImage(HttpPostedFile pfile)
 {
     return((pfile != null) && (pfile.ContentLength > 0) &&
            (Regex.IsMatch(pfile.ContentType, "image/\\S+") || CFile.IsImageFileAvailableInBrowser(pfile.FileName)));
 }