程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> .NET網頁編程 >> ASP.NET >> ASP.NET基礎 >> Asp.net response對象與request對象使用介紹

Asp.net response對象與request對象使用介紹

編輯:ASP.NET基礎

1.Response:服務器發給客戶端信息,或者說是服務器的向用戶發送輸出結果。

Redirect:讓客戶端重新定向到指定的 URL。

Write:寫出指定字符串。

2.request:客戶端發給服務器,或者說是從客戶端取得信息。

form:從使用post提交方式的表單獲取表單元素的值。

querystring:取回查詢字符串中的變量值,適用於get提交方式的表單。

舉一個列子:一個登陸頁面,還有一個主頁面。當登陸頁面登陸成功後,就自動跳轉到主頁面。

1.login.aspx
復制代碼 代碼如下:
<form id="form1" runat="server" method="post" >
<div>
<div>
<asp:Label ID="lbluser" runat="server" Text="用戶名"></asp:Label>
<asp:TextBox ID="txtuser" runat="server"></asp:TextBox>
</div>
<div></div>
<div>
<asp:Label ID="lblpwd" runat="server" Text="密 碼"></asp:Label>
<asp:TextBox ID="txtpwd" runat="server"></asp:TextBox>
</div>
<div>
<asp:Button ID="Button1" runat="server" Text="登錄" OnClick="Button1_Click" style="width: 40px" />
</div>
</div>
</form>

login.aspx.cs
復制代碼 代碼如下:
protected void Button1_Click(object sender, EventArgs e)
{
string user = Request.Form.Get("txtuser").ToString();//客戶端發給服務器需要提交的用戶名
string pwd = Request.Form.Get("txtpwd").ToString(); //客戶端發給服務器需要提交的密碼
if (user == "1" && pwd == "1")
{
Response.Redirect("main.aspx?user=" + user); //跳轉到主頁面
}
else
{
Response.Write("登錄失敗");
}

2.main.aspx.cs
復制代碼 代碼如下:
protected void Page_Load(object sender, EventArgs e)
{
string user = Request.QueryString["user"].ToString();//獲取user用戶名
Response.Write("歡迎" + user + "登錄");
}

當登錄頁面獲得正確的用戶名和密碼以後就會將密碼跳轉到主頁面,主頁面也會提示登錄成功的提示。當輸入錯誤,會有登錄失敗的提示。

在做牛腩新聞發布系統中,這兩個對象就會經常被用到,相信在以後的學習中會用到的更多,理解的也會更深刻。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved