public static string GetQueryString(string key)
        {
            if (HttpContext.Current.Request[key] == null)
                return "";
            return System.Web.HttpUtility.UrlDecode(HttpContext.Current.Request[key]);
        }

  

相关文章:

  • 2021-11-20
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-05-20
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-01-05
  • 2021-04-17
  • 2021-08-07
  • 2021-09-27
  • 2022-12-23
相关资源
相似解决方案