asp.net頁面?zhèn)髦禍y(cè)試實(shí)例代碼__第1頁
asp.net頁面?zhèn)髦禍y(cè)試實(shí)例代碼__第2頁
asp.net頁面?zhèn)髦禍y(cè)試實(shí)例代碼__第3頁
asp.net頁面?zhèn)髦禍y(cè)試實(shí)例代碼__第4頁
asp.net頁面?zhèn)髦禍y(cè)試實(shí)例代碼__第5頁
已閱讀5頁,還剩6頁未讀, 繼續(xù)免費(fèi)閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)

文檔簡介

1、頁面?zhèn)髦禍y(cè)試實(shí)例代碼_ WebForm_1.aspx內(nèi)容如下: 代碼如下: % Page Language=C# AutoEventWireup=true CodeBehind=WebForm_1.aspx.cs Inherits=頁面?zhèn)髦?WebForm_1 % !DOCTYPE html PUBLIC -/W3C/DTD XHTML 1.0 Transitional/EN l1/DTD/xhtml1-transitional.dtd html xmlns=l head runat=server title/title /head body form id=form1 runat=serve

2、r div asp:Table ID=TableLogin runat=server asp:TableRow asp:TableCelllabel用戶名:/label/asp:TableCell asp:TableCellasp:TextBox ID=UserName runat=server Width=150px/asp:TextBox/asp:TableCell /asp:TableRow asp:TableRow asp:TableCelllabel密碼:/label/asp:TableCell asp:TableCellasp:TextBox ID=PassWord runat=s

3、erver Width=150px/asp:TextBox/asp:TableCell /asp:TableRow asp:TableRow asp:TableCelllabel驗(yàn)證密碼:/label/asp:TableCell asp:TableCellasp:TextBox ID=ConfimPWD runat=server Width=150px/asp:TextBox/asp:TableCell /asp:TableRow asp:TableRow asp:TableCellasp:Button ID=Confirm runat=server Text=確認(rèn) Width=50px On

4、Click=Confirm_Click /asp:TableCell /asp:TableRow /asp:Table /div /form /body /html WebForm_2.aspx頁面如下: 代碼如下: % Reference Page=/WebForm_1.aspx % % Page Language=C# AutoEventWireup=true CodeBehind=WebForm_2.aspx.cs Inherits=頁面?zhèn)髦?WebForm_2 % !DOCTYPE html PUBLIC -/W3C/DTD XHTML 1.0 Transitional/EN l1/D

5、TD/xhtml1-transitional.dtd html xmlns=l head runat=server title/title /head body form id=form1 runat=server div /div /form /body /html WebForm_1.aspx.cs文件如下: 代碼如下: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebControl

6、s; namespace 頁面?zhèn)髦?public partial class WebForm_1 : System.Web.UI.Page protected void Page_Load(object sender, EventArgs e) public string un/得到用戶名 get return UserName.Text; public string pwd/得到密碼 get return PassWord.Text; public string conpwd/得到確認(rèn)密碼 get return ConfimPWD.Text; / summary / 向WebForm_2.a

7、spx頁面?zhèn)髦?/ /summary / param name=sender/param / param name=e/param protected void Confirm_Click(object sender, EventArgs e) /1:QueryString頁面?zhèn)髦?/string url = WebForm_2.aspx?un= + UserName.Text + userpassword= + PassWord.Text + conPwd= + ConfimPWD.Text; /Response.Redirect(url); /2:Session傳值 /Sessionun

8、= UserName.Text; /Sessionpwd = PassWord.Text; /Sessionconpwd = ConfimPWD.Text; /Server.Transfer(WebForm_2.aspx); /3:用法cookie對(duì)象傳值 /HttpCookie cookie_name = new HttpCookie(un); /cookie_name.Value = UserName.Text; /HttpCookie cookie_pwd = new HttpCookie(pwd); /cookie_pwd.Value = PassWord.Text; /HttpCoo

9、kie cookie_conpwd = new HttpCookie(conpwd); /cookie_conpwd.Value = ConfimPWD.Text; /Response.AppendCookie(cookie_name); /Response.AppendCookie(cookie_pwd); /Response.AppendCookie(cookie_conpwd); /Server.Transfer(WebForm_2.aspx); /4:用法application對(duì)象傳值,類似session傳值,作用范圍全局全部用戶 /Applicationun = UserName.T

10、ext; /Applicationpwd = PassWord.Text; /Applicationconpwd = ConfimPWD.Text; /Response.Redirect(WebForm_2.aspx); Server.Transfer(WebForm_2.aspx); WebForm_2.aspx.cs文件如下: 代碼如下: using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.W

11、ebControls; namespace 頁面?zhèn)髦?public partial class WebForm_2 : System.Web.UI.Page protected void Page_Load(object sender, EventArgs e) /QueryTransfer(); /SessionTransfer(); /CookieTransfer(); /ApplicationTransfer(); Transfer(); public void QueryTransfer()/接收QueryString傳值,來自于WebForm_1頁面的值 string strUser

12、Name = Request.QueryStringun.ToString(); string strPassword = Request.QueryStringuserpassword.ToString(); string strPWD = Request.QueryStringconPwd.ToString(); Response.Write(用戶名為 + strUserName + br/ + 密碼為 + strPassword + br/ + 確認(rèn)密碼為 + strPWD); public void SessionTransfer()/接收session傳值,來自于WebForm_1頁

13、面的值 string strUserName = Sessionun.ToString(); string strPassword = Sessionpwd.ToString(); string strPWD = Sessionconpwd.ToString(); Response.Write(用戶名為 + strUserName + br/ + 密碼為 + strPassword + br/ + 確認(rèn)密碼為 + strPWD); Session.Remove(un); Session.Remove(pwd); Session.Remove(conpwd); public void Cooki

14、eTransfer()/接收cookie傳值,來自于WebForm_1頁面的值 string strUserName = Request.Cookiesun.Value.ToString(); string strPassword = Request.Cookiespwd.Value.ToString(); string strPWD = Request.Cookiesconpwd.Value.ToString(); Response.Write(用戶名為 + strUserName + br/ + 密碼為 + strPassword + br/ + 確認(rèn)密碼為 + strPWD); publ

15、ic void ApplicationTransfer()/接收Application傳值,來自于WebForm_1頁面的值 Application.Lock(); string strUserName = Applicationun.ToString(); string strPassword = Applicationpwd.ToString(); string strPWD = Applicationconpwd.ToString(); Application.UnLock(); if (strPassword != strPWD) Response.Write(您確認(rèn)的密碼錯(cuò)誤,請(qǐng)重新輸入!br/); Server.Transfer(WebForm_1.aspx); Response.Write(用戶名為 + strUserName + br/ + 密碼為 + strPassword + br/ + 確認(rèn)密碼為 + strPWD); public void Transfer()/Transfer傳值,來自WebForm_1.

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。

評(píng)論

0/150

提交評(píng)論