頁面資料校驗

2022-03-08 13:15:59 字數 2174 閱讀 8810

///

/// 頁面資料校驗類

/// 2010.6

///

public class pagevalidate

/// request

/// request的鍵值

/// 最大長度

/// 返回request查詢字串

/// 是否數字字串

///

/// 輸入字串

///

public static bool isnumber(string inputdata)

///

/// 是否數字字串 可帶正負號

///

/// 輸入字串

///

public static bool isnumbersign(string inputdata)

///

/// 是否是浮點數

///

/// 輸入字串

///

public static bool isdecimal(string inputdata)

///

/// 是否是浮點數 可帶正負號

///

/// 輸入字串

///

public static bool isdecimalsign(string inputdata)

#endregion

#region 中文檢測

///

/// 檢測是否有中文字元

///

///

///

public static bool ishaschzn(string inputdata)

#endregion

#region 郵件位址

///

/// 是否是浮點數 可帶正負號

///

/// 輸入字串

///

public static bool isemail(string inputdata)

#endregion

#region 其他

///

/// 檢查字串最大長度,返回指定長度的串

///

/// 輸入字串

/// 最大長度

///

public static string sqltext(string sqlinput, int maxlength)

return sqlinput;

} ///

/// 字串編碼

///

///

///

public static string htmlencode(string inputdata)

///

/// 設定label顯示encode的字串

///

///

///

public static void setlabel(label lbl, string txtinput)

public static void setlabel(label lbl, object inputobj)

//字串清理

public static string inputtext(string inputstring, int maxlength)

///

///解析html成 普通文字

///

/// string

/// string

public static string decode(string str)

{ str = str.replace("

","\n");

str = str.replace(">",">");

str = str.replace("<","<");

str = str.replace(" "," ");

str = str.replace(""","\"");

return str;

頁面資料校驗類

using system using system.text using system.web using system.web.ui.webcontrols using system.text.regularexpressions namespace smarterp.until region 數...

頁面資料校驗類

頁面資料校驗類 public class pagevalidate region 數字字串檢查 public static bool isphone string inputdata 檢查request查詢字串的鍵值,是否是數字,最大長度限制 request request的鍵值 最大長度 返回re...

資料校驗 CRC校驗

工作原理 crc即迴圈冗餘校驗碼 cyclic redundancy check 是資料通訊領域中最常用的一種查錯校驗碼,其特徵是資訊字段和校驗欄位的長度可以任意選定。迴圈冗餘檢查 crc 是一種資料傳輸檢錯功能,對資料進行多項式計算,並將得到的結果附在幀的後面,接收裝置也執行類似的演算法,以保證資...