Home Backend Development C#.Net Tutorial Asp.net page value transfer test example code (front and back)

Asp.net page value transfer test example code (front and back)

Jan 21, 2017 pm 03:29 PM

The content of

WebForm_1.aspx is as follows:

<%@ 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=&#39;server&#39;> 
<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>
Copy after login

WebForm_2.aspx page is as follows:

<%@ 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>
Copy after login

WebForm_1.aspx.cs file is as follows:

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"); 
} 
} 
}
Copy after login

WebForm_2.aspx.cs file As follows:

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); 
} 
} 
}
Copy after login

My level is limited, so please give me your advice!

For more asp.net page value transfer test example code (front and backend) related articles, please pay attention to the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. How to Fix Audio if You Can't Hear Anyone
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Chat Commands and How to Use Them
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to handle special characters in C language How to handle special characters in C language Apr 03, 2025 pm 03:18 PM

In C language, special characters are processed through escape sequences, such as: \n represents line breaks. \t means tab character. Use escape sequences or character constants to represent special characters, such as char c = '\n'. Note that the backslash needs to be escaped twice. Different platforms and compilers may have different escape sequences, please consult the documentation.

What is the role of char in C strings What is the role of char in C strings Apr 03, 2025 pm 03:15 PM

In C, the char type is used in strings: 1. Store a single character; 2. Use an array to represent a string and end with a null terminator; 3. Operate through a string operation function; 4. Read or output a string from the keyboard.

How to use various symbols in C language How to use various symbols in C language Apr 03, 2025 pm 04:48 PM

The usage methods of symbols in C language cover arithmetic, assignment, conditions, logic, bit operators, etc. Arithmetic operators are used for basic mathematical operations, assignment operators are used for assignment and addition, subtraction, multiplication and division assignment, condition operators are used for different operations according to conditions, logical operators are used for logical operations, bit operators are used for bit-level operations, and special constants are used to represent null pointers, end-of-file markers, and non-numeric values.

The difference between char and wchar_t in C language The difference between char and wchar_t in C language Apr 03, 2025 pm 03:09 PM

In C language, the main difference between char and wchar_t is character encoding: char uses ASCII or extends ASCII, wchar_t uses Unicode; char takes up 1-2 bytes, wchar_t takes up 2-4 bytes; char is suitable for English text, wchar_t is suitable for multilingual text; char is widely supported, wchar_t depends on whether the compiler and operating system support Unicode; char is limited in character range, wchar_t has a larger character range, and special functions are used for arithmetic operations.

The difference between multithreading and asynchronous c# The difference between multithreading and asynchronous c# Apr 03, 2025 pm 02:57 PM

The difference between multithreading and asynchronous is that multithreading executes multiple threads at the same time, while asynchronously performs operations without blocking the current thread. Multithreading is used for compute-intensive tasks, while asynchronously is used for user interaction. The advantage of multi-threading is to improve computing performance, while the advantage of asynchronous is to not block UI threads. Choosing multithreading or asynchronous depends on the nature of the task: Computation-intensive tasks use multithreading, tasks that interact with external resources and need to keep UI responsiveness use asynchronous.

How to convert char in C language How to convert char in C language Apr 03, 2025 pm 03:21 PM

In C language, char type conversion can be directly converted to another type by: casting: using casting characters. Automatic type conversion: When one type of data can accommodate another type of value, the compiler automatically converts it.

How to use char array in C language How to use char array in C language Apr 03, 2025 pm 03:24 PM

The char array stores character sequences in C language and is declared as char array_name[size]. The access element is passed through the subscript operator, and the element ends with the null terminator '\0', which represents the end point of the string. The C language provides a variety of string manipulation functions, such as strlen(), strcpy(), strcat() and strcmp().

What is the function of C language sum? What is the function of C language sum? Apr 03, 2025 pm 02:21 PM

There is no built-in sum function in C language, so it needs to be written by yourself. Sum can be achieved by traversing the array and accumulating elements: Loop version: Sum is calculated using for loop and array length. Pointer version: Use pointers to point to array elements, and efficient summing is achieved through self-increment pointers. Dynamically allocate array version: Dynamically allocate arrays and manage memory yourself, ensuring that allocated memory is freed to prevent memory leaks.

See all articles