asp.net页面传值测试实例代码

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);
}
}
}

本人水平有限,还请各位朋友多多指教!

时间: 2024-10-26 04:35:21

asp.net页面传值测试实例代码的相关文章

asp.net页面传值测试实例代码(前后台)_实用技巧

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&qu

【转】ASP.NET页面传值汇总

介绍: 在网页应用程序的开发中,页面之间的传值应该是最常见的问题了. 在这篇文章里,azamsharp 将为我们介绍一些ASP.NET页面传值的方式.本文所举的例子非常简单,仅仅包含了一个文本框和几个按钮,当按钮点击时文本框中的字符串将会以不同的方 式传递到另外的页面去. 1. Response.Redirect (或称 Query String 方式.URL方式) Response.Redirect("WebForm5.aspx"); 首先让我们看看 Response.Redirec

asp.net 页面传值的几个方法_实用技巧

在这篇文章里,azamsharp 将为我们介绍一些ASP.NET页面传值的方式.本文所举的例子非常简单,仅仅包含了一个文本框和几个按钮,当按钮点击时文本框中的字符串将会以不同的方式传递到另外的页面去. 1. Response.Redirect (或称 Query String 方式.URL方式) 复制代码 代码如下: Response.Redirect("WebForm5.aspx"); 首先让我们看看 Response.Redirect 方法,这应该是最简单的了,当我们点击Respo

ReactNative页面跳转实例代码_javascript技巧

效果图如下所示: 进入工作目录,运行 react-native init NavigatorProject 创建项目NavigatorProject import React, { Component } from 'react'; import { AppRegistry, StyleSheet, Text, View, TouchableHighlight, Image, Navigator } from 'react-native'; class navigatorProject exte

使用Bootstrap框架制作查询页面的界面实例代码_javascript技巧

以Bootstrap框架来进行设计和开发,是目前国际上比较流行的一个趋势.很多软件公司在优化新产品时,因为其在js和控件上的综合优势,会选用这个开发框架. Bootstrap框架是一个前端UI设计的框架,它提供了统一的UI界面,简化了设计界面UI的过程(缺点是定制了界面,调整的余地不是太大).尤其是现在的响应时布局(我的理解是页面根据不同的分辨率,采用不同的页面元素的布局),在Bootstrap中很好的支持了,只要简单设置了属性,就能自动实现响应时布局,大大简化了程序员的界面的过程. 因此,本人

AJAX实现简单的注册页面异步请求实例代码

AJAX简介 (1)AJAX = 异步 JavaScript 和 XML. (2)AJAX 是一种用于创建快速动态网页的技术. (3)通过在后台与服务器进行少量数据交换,AJAX 可以使网页实现异步更新.这意味着可以在不重新加载整个网页的情况下,对网页的某部分进行更新. (4)传统的网页(不使用 AJAX)如果需要更新内容,必需重载整个网页面. 简单布局 JS先判断,把前端可以的判断做,减少服务器的交互 $('button').on('click',function(){; var boolus

ASP.NET页面传值

  这个问题是上周去远洋公司面试的一道笔试题,面试的时候面试官也问到了,虽然事先有所准备当时也回答上了,但是从根本上说自己还不太理解.正好这两天做高效平台评教系统的时候用到了页面传值,就又从网上查了一些相关资料.   常用的页面传值有以下几种:QueryString传值,Session传值,Cookies传值,Application以及Transfer传值.下面我们就一起了解一下各种传值方式的工作机制.相互联系以及优缺点.   QueryString传值:   QueryString传值又称作U

asp.net 通用的连接数据库实例代码_实用技巧

View Code 复制代码 代码如下: <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %> <center><h2><font face="宋体">访问数据库的通用代码实例</font></h2>

ASP.Net页面生成饼图实例_实用技巧

本文实例讲述了ASP.Net页面生成饼图的方法.分享给大家供大家参考.具体实现方法如下: 1.生成普通饼图: 复制代码 代码如下: using System; using System.Collections.Generic; using System.Drawing; using System.Drawing.Imaging; using System.Linq; using System.Web; using System.Web.UI; using System.Web.UI.WebCon