public static string GetQueryString(string key) { if (HttpContext.Current.Request[key] == null) return ""; return System.Web.HttpUtility.UrlDecode(HttpContext.Current.Request[key]); }
2022-08-31 20:30:10
public static string GetQueryString(string key) { if (HttpContext.Current.Request[key] == null) return ""; return System.Web.HttpUtility.UrlDecode(HttpContext.Current.Request[key]); }