WebForm_1.aspx內容如下:
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm_1.aspx.cs" Inherits="页面传值.WebForm_1" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> </head> <body> <form id="form1" runat="server"> <div> <asp:Table ID="TableLogin" runat='server'> <asp:TableRow> <asp:TableCell><label>用户名:</label></asp:TableCell> <asp:TableCell><asp:TextBox ID="UserName" runat="server" Width="150px"></asp:TextBox></asp:TableCell> </asp:TableRow> <asp:TableRow> <asp:TableCell><label>密码:</label></asp:TableCell> <asp:TableCell><asp:TextBox ID="PassWord" runat="server" Width="150px"></asp:TextBox></asp:TableCell> </asp:TableRow> <asp:TableRow> <asp:TableCell><label>验证密码:</label></asp:TableCell> <asp:TableCell><asp:TextBox ID="ConfimPWD" runat="server" Width="150px"></asp:TextBox></asp:TableCell> </asp:TableRow> <asp:TableRow> <asp:TableCell><asp:Button ID="Confirm" runat="server" Text="确认" Width="50px" OnClick="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="页面传值.WebForm_2" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <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.WebControls; namespace 页面传值 { 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//得到确认密码 { get { return ConfimPWD.Text; } } /// <summary> /// 向WebForm_2.aspx页面传值 /// </summary> /// <param name="sender"></param> /// <param name="e"></param> protected void Confirm_Click(object sender, EventArgs e) { //1:QueryString页面传值 //string url = "WebForm_2.aspx?un=" + UserName.Text + "&userpassword=" + PassWord.Text + "&conPwd=" + ConfimPWD.Text; //Response.Redirect(url); //2:Session传值 //Session["un"] = UserName.Text; //Session["pwd"] = PassWord.Text; //Session["conpwd"] = ConfimPWD.Text; //Server.Transfer("WebForm_2.aspx"); //3:使用cookie对象传值 //HttpCookie cookie_name = new HttpCookie("un"); //cookie_name.Value = UserName.Text; //HttpCookie cookie_pwd = new HttpCookie("pwd"); //cookie_pwd.Value = PassWord.Text; //HttpCookie 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对象传值,类似session传值,作用范围全局所有用户 //Application["un"] = UserName.Text; //Application["pwd"] = PassWord.Text; //Application["conpwd"] = 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.WebControls; namespace 页面传值 { 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 strUserName = Request.QueryString["un"].ToString(); string strPassword = Request.QueryString["userpassword"].ToString(); string strPWD = Request.QueryString["conPwd"].ToString(); Response.Write("用户名为" + strUserName + "<br/>" + "密码为" + strPassword + "<br/>" + "确认密码为" + strPWD); } public void SessionTransfer()//接收session传值,来自于WebForm_1页面的值 { string strUserName = Session["un"].ToString(); string strPassword = Session["pwd"].ToString(); string strPWD = Session["conpwd"].ToString(); Response.Write("用户名为" + strUserName + "<br/>" + "密码为" + strPassword + "<br/>" + "确认密码为" + strPWD); Session.Remove("un"); Session.Remove("pwd"); Session.Remove("conpwd"); } public void CookieTransfer()//接收cookie传值,来自于WebForm_1页面的值 { string strUserName = Request.Cookies["un"].Value.ToString(); string strPassword = Request.Cookies["pwd"].Value.ToString(); string strPWD = Request.Cookies["conpwd"].Value.ToString(); Response.Write("用户名为" + strUserName + "<br/>" + "密码为" + strPassword + "<br/>" + "确认密码为" + strPWD); } public void ApplicationTransfer()//接收Application传值,来自于WebForm_1页面的值 { Application.Lock(); string strUserName = Application["un"].ToString(); string strPassword = Application["pwd"].ToString(); string strPWD = Application["conpwd"].ToString(); Application.UnLock(); if (strPassword != strPWD) { Response.Write("您确认的密码错误,请重新输入!<br/>"); Server.Transfer("WebForm_1.aspx"); } Response.Write("用户名为" + strUserName + "<br/>" + "密码为" + strPassword + "<br/>" + "确认密码为" + strPWD); } public void Transfer()//Transfer传值,来自WebForm_1.aspx页面的值 { WebForm_1 wf1; wf1 = (WebForm_1)Context.Handler; string strUserName = wf1.un; string strPassword = wf1.pwd; string strPWD = wf1.conpwd; Response.Write("用户名为" + strUserName + "<br/>" + "密码为" + strPassword + "<br/>" + "确认密码为" + strPWD); } } }
WebForm_2.aspx.cs檔案如下:
指教! 更多asp.net頁面傳值測試實例代碼(前後台)相關文章請關注PHP中文網! 🎜
C#和.NET通過不斷的更新和優化,適應了新興技術的需求。 1)C#9.0和.NET5引入了記錄類型和性能優化。 2).NETCore增強了雲原生和容器化支持。 3)ASP.NETCore與現代Web技術集成。 4)ML.NET支持機器學習和人工智能。 5)異步編程和最佳實踐提升了性能。

c#.netissutableforenterprise-levelapplications withemofrosoftecosystemdueToItsStrongTyping,richlibraries,androbustperraries,androbustperformance.however,itmaynotbeidealfoross-platement forment forment forment forvepentment offependment dovelopment toveloperment toveloperment whenrawspeedsportor whenrawspeedseedpolitical politionalitable,

C#在.NET中的編程過程包括以下步驟:1)編寫C#代碼,2)編譯為中間語言(IL),3)由.NET運行時(CLR)執行。 C#在.NET中的優勢在於其現代化語法、強大的類型系統和與.NET框架的緊密集成,適用於從桌面應用到Web服務的各種開發場景。

C#是一種現代、面向對象的編程語言,由微軟開發並作為.NET框架的一部分。 1.C#支持面向對象編程(OOP),包括封裝、繼承和多態。 2.C#中的異步編程通過async和await關鍵字實現,提高應用的響應性。 3.使用LINQ可以簡潔地處理數據集合。 4.常見錯誤包括空引用異常和索引超出範圍異常,調試技巧包括使用調試器和異常處理。 5.性能優化包括使用StringBuilder和避免不必要的裝箱和拆箱。

C#.NET應用的測試策略包括單元測試、集成測試和端到端測試。 1.單元測試確保代碼的最小單元獨立工作,使用MSTest、NUnit或xUnit框架。 2.集成測試驗證多個單元組合的功能,常用模擬數據和外部服務。 3.端到端測試模擬用戶完整操作流程,通常使用Selenium進行自動化測試。

C#高級開發者面試需要掌握異步編程、LINQ、.NET框架內部工作原理等核心知識。 1.異步編程通過async和await簡化操作,提升應用響應性。 2.LINQ以SQL風格操作數據,需注意性能。 3..NET框架的CLR管理內存,垃圾回收需謹慎使用。

C#.NET面試問題和答案包括基礎知識、核心概念和高級用法。 1)基礎知識:C#是微軟開發的面向對象語言,主要用於.NET框架。 2)核心概念:委託和事件允許動態綁定方法,LINQ提供強大查詢功能。 3)高級用法:異步編程提高響應性,表達式樹用於動態代碼構建。

C#.NET是構建微服務的熱門選擇,因為其生態系統強大且支持豐富。 1)使用ASP.NETCore創建RESTfulAPI,處理訂單創建和查詢。 2)利用gRPC實現微服務間的高效通信,定義和實現訂單服務。 3)通過Docker容器化微服務,簡化部署和管理。


熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

AI Hentai Generator
免費產生 AI 無盡。

熱門文章

熱工具

SAP NetWeaver Server Adapter for Eclipse
將Eclipse與SAP NetWeaver應用伺服器整合。

Atom編輯器mac版下載
最受歡迎的的開源編輯器

ZendStudio 13.5.1 Mac
強大的PHP整合開發環境

VSCode Windows 64位元 下載
微軟推出的免費、功能強大的一款IDE編輯器

禪工作室 13.0.1
強大的PHP整合開發環境