發(fā)布時(shí)間:2020-08-06 21:53 作者:獨(dú)孤劍 閱讀:2197
ASP.NET aspx獲取Url參數(shù), 獲取表單提交參數(shù), 獲取Get參數(shù), 獲取Post參數(shù)
Default.aspx頁面中實(shí)現(xiàn)
using System; namespace WebApplication5 { /// <summary> /// Default.aspx /// </summary> public partial class Default : System.Web.UI.Page { protected void Page_Load(object sender, EventArgs e) { if (!IsPostBack) { // 獲取Url參數(shù), Get請求參數(shù) // http://127.0.0.1/Default.aspx?id=1 string id = Request.QueryString["id"]; // 獲取表單提交參數(shù), Post請求參數(shù) string username = Request.Form["username"]; // 為了防止有中文亂碼的問題, 最好在獲取時(shí)進(jìn)行Url解碼操作 username = System.Web.HttpUtility.UrlDecode(Request.Form["username"].ToString()); } } } }
微信打賞, 微信掃一掃
支付寶打賞, 支付寶掃一掃
如果文章對您有幫助,歡迎給作者打賞