常有函数

 

  1 using  System;
  2 using  System.Drawing;
  3 using  System.Web;
  4 using  System.Web.UI;
  5 using  System.Web.UI.HtmlControls;
  6 using  System.IO;
  7 using  System.Threading;
  8
  9 namespace  CommonClass
 10 {
 11    /// <summary>
 12    /// Common 的摘要说明。
 13    /// </summary>

 14    public class Common
 15    {
 16        public Common()
 17        {
 18            //
 19            // TODO: 在此处添加构造函数逻辑
 20            //
 21        }

 22
 23
 24        (1) 转换大小 ChangeImage(string 原文件路径,string ,int,int,int)
 87
 88        (1) 转换大小string[] ZipImage(string 原文件路径,string ,int,int,int)
129        
130        (2) 根据文件名字符串的扩展名,得到一种图片文件的格式
155        
156        (3) 完成查找关键字字体高亮显示 string serkeys(string , string)
194
195        (4) 改变原来图片的名称 ChangeImgName(string img,string NewName)
213
214        (5) 返回日期样式GetDate() 获取日期样式 static string GetDate(object objDate, int Type)
290
291        (6) 判断输入是否是数字bool IsNum(object str)
302
303        (8) 改变字符串长度string ChangeLen(string str,int len)
312
313        (9) 图片上串 string UploadImage(HtmlInputFile myFile,string SavePath)
319
320        (10) 图片连接 string GetImg(string img,int height,int width,string memo)
326
327        (11) 判断图片格式和大小IsImg(HtmlInputFile myFile)        
338
339        (12)压缩图片 RarImage(HtmlInputFile upImage, string imgName, string savePath,int nWidth, int nHeight, string pre)  pre小图片前缀
407
408        (13) HTML转换 static string UnHtml( object objResource)
427
428        (14) 遍历目录返回目录大小GetDirSize(string StrDir)
447
448        (15) 返回图片高度GetImageHeight (System.IO.Stream strSourceFile)
457
458        (16) 返回图片宽度GetImageHeight (System.IO.Stream strSourceFile)
467
468        //(17) 对文件目录压缩 ZipDirectory(string DirectoryPath,string ZipFile)
489
490        (19) 加密string GetMd5Psw32( string str )
496
497        (20) 检测SQL注入 void StrCheck(object s)
560
561        (21) 输出硬盘文件,提供下载ResponseFile(HttpRequest _Request,HttpResponse _Response,string _fileName,string _fullPath, long _speed)
635
636    }

637}

638

你可能感兴趣的:(函数)