版權(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ì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 《時(shí)空會(huì)客廳》節(jié)目方案
- 安質(zhì)部管理制度
- 公共廁所保潔制度
- 2024年道路客運(yùn)從業(yè)資格證模擬考試下載
- 2024年吉林客運(yùn)駕駛員考試虛擬場(chǎng)景考試題目
- 2024年哈爾濱客運(yùn)從業(yè)資格證題庫
- 吉首大學(xué)《風(fēng)景建筑速寫》2021-2022學(xué)年第一學(xué)期期末試卷
- 《機(jī)械設(shè)計(jì)基礎(chǔ)》期末考試試卷六
- 廣東省公務(wù)員考試2021-2020申論真題(附答案)
- 吉林藝術(shù)學(xué)院《數(shù)字空間設(shè)計(jì)表現(xiàn)》2021-2022學(xué)年第一學(xué)期期末試卷
- 收取執(zhí)行款銀行賬戶確認(rèn)書
- 超星爾雅學(xué)習(xí)通走近核科學(xué)技術(shù)章節(jié)測(cè)試答案
- 初中藝術(shù)鄂教七年級(jí)上冊(cè)(2022年新編) 漫步藝術(shù)長廊舞劇欣賞《永不消逝的電波》教學(xué)設(shè)計(jì)
- 水電廠檢修標(biāo)準(zhǔn)化作業(yè)流程圖
- 中考數(shù)學(xué)復(fù)習(xí)專題課件:瓜豆原理之直線型
- GB 18384-2020 電動(dòng)汽車安全要求
- 腹股溝斜疝護(hù)理查房ppt
- 精品堆垛機(jī)安裝指導(dǎo)書
- PMC生產(chǎn)計(jì)劃與物料控制實(shí)務(wù)課件
- 人工濕地設(shè)計(jì)規(guī)范標(biāo)準(zhǔn)[詳]
- 提灌站項(xiàng)目施工組織設(shè)計(jì)
評(píng)論
0/150
提交評(píng)論