////// 从URL获取值(字符串) /// public static string GetValueFromUrl(string key) { string keyvalue = HttpContext.Current.Request.QueryString[key]; if (keyvalue != null) { keyvalue = KillBadString(keyvalue); return keyvalue; } return ""; } ////// 从URL获取值(整型) /// /// ///public static int GetIntValueFromUrl(string key) { string keyvalue = HttpContext.Current.Request.QueryString[key]; int result = 0; if (int.TryParse(keyvalue, out result)) { return result; } return result; } /// /// 过滤SQL敏感字符 /// /// ///public static string KillBadString(string str) { if (str == null || str.Length == 0) { return ""; } str = System.Text.RegularExpressions.Regex.Replace(str, "'", "''"); return str; }
以上就是httpHelper 从URL获取值的实例代码的详细内容,更多请关注其它相关文章!