国产97色在线|亚洲-欧美人妻另类制服丝袜-欧美人成国产91视频-殷素素一女战二夫|www.ycjrc.net

ASP.NET ashx獲取Url參數, 獲取表單提交參數, 獲取Get參數, 獲取Post參數

發布時間:2020-08-06 21:54 作者:獨孤劍 閱讀:2650

ASP.NET ashx獲取Url參數, 獲取表單提交參數, 獲取Get參數, 獲取Post參數

Login.ashx頁面中實現

using System.Web;

namespace WebApplication5
{
    /// <summary>
    /// Login.ashx
    /// </summary>
    public class Login : IHttpHandler
    {
        public void ProcessRequest(HttpContext context)
        {
            // 獲取Url參數, Get請求參數
            // http://127.0.0.1/Default.ashx?id=1
            string id = context.Request.QueryString["id"];

            // 獲取表單提交參數, Post請求參數
            string username = context.Request.Form["username"];
            // 為了防止有中文亂碼的問題, 最好在獲取時進行Url解碼操作
            username = System.Web.HttpUtility.UrlDecode(context.Request.Form["username"].ToString());

            context.Response.ContentType = "text/plain";
            context.Response.Write("UserName: " + username);
        }

        public bool IsReusable
        {
            get
            {
                return false;
            }
        }
    }
}


微信打賞, 微信掃一掃

支付寶打賞, 支付寶掃一掃

如果文章對您有幫助,歡迎給作者打賞

作者最新文章
開發過程中解決360兼容模式瀏覽器的方法
云南象群向西南方向遷移,云南離群獨象距離象群約12公里
吉林做網站最低價格,吉林企業網站建設價格低至500元起
守象人直擊云南象群最新動向
網站影響百度蜘蛛抓取量的因素有哪些?為什么我的網站Baidu蜘蛛來的次數少?
企業名片
在線客服