C#后台获取post参数
public static string GetQueryString(string key)
{
if (HttpContext.Current.Request[key] == null)
return "";
return System.Web.HttpUtility.UrlDecode(HttpContext.Current.Request[key]);
}

浙公网安备 33010602011771号