WebForm aspx页面传值---7种方式

1、get方式

发送页

<form id="form1" runat="server">
    <div>
        <a href="WebForm2.aspx?name=5">调转到Form2</a>
        <asp:Button ID="button2" Text="跳转页面" runat="server" onclick="button2_Click"/>
    </div>
</form>

protected void button2_Click(object sender, EventArgs e)
        {
            Response.Redirect("WebForm2.aspx?name=5");

}

接受页

     this.Label1.Text = Request["name"];
            //this.Label2.Text = Request.Params["name"];
            //this.Label3.Text = Request.QueryString[0];

2、post方式

a\不带 runat="server"形式

发送页

<form id="form2" action="WebForm2.aspx" method="post">
        <input name="txtname" type="text" value="lilili"  />
        <input type="submit" value="提交网页" />
</form>

接受页

  this.Label1.Text =Request.Form["txtname"];

b\带 runat="server"

发送页

<form runat="server" id="form3">
        <input id="btnTransfer" type="button" onclick="post();" runat="server" value="跳转" />
    </form>
    <form id="form4" method="post">
        <input type="text" runat="server" id="txtname" value="lili" />
    </form>
    <script type="text/javascript">
        function post() {
            form4.action = "WebForm2.aspx";
            form4.submit();
        }
    </script>

接受页

  this.Label1.Text =Request.Form["txtname"];

3、Session 和 Application

Session["name2"] = "sessontest";
            Application["name3"] = "applicationtest";

this.Label2.Text =(string)Session["name2"];
            this.Label3.Text =(string)Application["name3"];

4、静态变量

发送页

public static string statest="static string";

protected void button2_Click(object sender, EventArgs e)
        {
            Server.Transfer("WebForm2.aspx");
        }

接受页

  this.Label1.Text = WebForm1.statest;

5、Context.Handler 获取控件

发送页

          <asp:TextBox ID="TextBox1" runat="server" Text="lilili"></asp:TextBox>
        <asp:Button ID="button2" Text="跳转页面" runat="server" onclick="button2_Click"/>

          protected void button2_Click(object sender, EventArgs e)
        {
            Server.Transfer("WebForm2.aspx");
        }

  

接受页

         //获取post传过来的对象
            if (Context.Handler is WebForm1)
            {
                WebForm1 poster = (WebForm1)Context.Handler;
                this.Label1.Text = ((TextBox)poster.FindControl("TextBox1")).Text;
            }

6、Context.Handler 获取公共变量

发送页

     public string testpost = "testpost";
        protected void button2_Click(object sender, EventArgs e)
        {
            Server.Transfer("WebForm2.aspx");
        }

接受页

        //获取post传过来的对象
            if (Context.Handler is WebForm1)
            {
                WebForm1 poster = (WebForm1)Context.Handler;
                this.Label2.Text = poster.testpost;
            }

7、Context.Items 变量

发送页

protected void button2_Click(object sender, EventArgs e)
        {
            Context.Items["name"] = "contextItems";
            Server.Transfer("WebForm2.aspx");
        }

接受页

       //获取post传过来的对象
            if (Context.Handler is WebForm1)
            {
                this.Label3.Text = Context.Items["name"].ToString();
            }

时间: 2024-12-18 05:35:44

WebForm aspx页面传值---7种方式的相关文章

swift详解之二十二-----------UINavigationController的基本用法和页面传值几种方式

UINavigationController的基本用法和页面传值几种方式 本文介绍UINavigationController基本用法,因为涉及多页面顺便介绍页面传值 1.手写代码创建UINavigationController 手写方式创建很简单 , 首先创建一个项目 , 默认是从storyboard 加载的.这时候首先去掉默认加载方式 . 然后在AppDelegate.swift 的didFinishLaunchingWithOptions 中创建 代码如下: func applicatio

.net cs后台刷新aspx页面的四种方式

一:Response.Redirect(Request.Url.ToString()); 二:Response.Write("<script language=javascript>window.location.href=document.URL;</script>"); 三:Response.AddHeader("Refresh","0"); 四:Response.Write("<script lang

C#:总结页面传值几种方法

小知识点: 1.  W7自带 .NetFrameWork 3.5, 兼容模式为 高版本号兼容低版本号: 2. WF和WPF都是基于XAML的,可是两者的用途不同. WF是一种开发框架,将工作流嵌入在.NET Framework应用程序中,所主要用于开发创建工作流应用程序.WF:http://msdn.microsoft.com/zh-cn/library/ms734696.aspx WPF是一种渲染UI的技术是一个用于Windows平台的全新的图形显示系统,它包括在.NET Framework中

小蚂蚁学习页面静态化(2)——更新生成纯静态化页面的三种方式

更新生成纯静态化页面的三种方式:1.按照时间间隔更新.2.手动更新.3.定时更新(需要系统配合). 1. 按照时间间隔更新. 当用户第一次访问这个页面的时候,程序自动判断,该静态文件是否存在,并且该文件是否还在有效时间内,如果该文件未超出了有效时间,用户访问的是已经生成的静态文件.如果超出了有效时间,用户得到的是动态输出的内容,同时重新生成静态文件.稍微修改一下昨天的代码为例: <?php //首先判断是否有静态文件,并且文件的最新修改时间到现在是否大于20秒 if(is_file('./tex

网络笔记01-3 socket 实现百度页面的两种方式

scoket 实现百度页面的两种方式: 1.利用系统自带    //1.创建URL NSURL *url=[NSURL URLWithString:@"http://m.baidu.com"]; //2.创建请求   NSMutableURLRequest *request=[NSMutableURLRequest requestWithURL:url];   [request setValue:@"iPhone AppleWebKit" forHTTPHeader

WebForm.aspx 页面通过 AJAX 访问WebForm.aspx.cs类中的方法,获取数据(转)

WebForm.aspx 页面通过 AJAX 访问WebForm.aspx.cs类中的方法,获取数据 WebForm1.aspx 页面 (原生AJAX请求,写法一) <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="IsPostBack.WebForm1" %> <!DOCTYPE htm

aspx页面传值常用几种方式

Redirect 1 page1.aspx 2 protected void Button1_Click(object sender, EventArgs e) 3 { 4 Response.Redirect("page2.aspx?name=" + TextBox1.Text); 5 } 6 page2.aspx 7 if (Request.QueryString["name"] != null) 8 { 9 TextBox1.Text = Request.Que

【2017-05-21】WebForm跨页面传值取值、C#服务端跳转页面、 Button的OnClientClick属性、Js中getAttribute和超链接点击弹出警示框。

一.跨页面传值和取值: 1.QueryString - url传值,地址传值 优缺点:不占用服务器内存:保密性差,传递长度有限. 通过跳转页面路径进行传值,方式: href="地址?key=value&key=value"            用&可以实现传递多个值. 通过这种方式就把要传递的值传到要跳转的页面去了. 2.跨页面取值: 在跳转到的页面的C#代码服务端进行取值 用:  string value = Request["key"]; 二.

asp.net中,跳转页面的几种方式

js方式的页面跳转1.window.location.href方式    <script language="javascript" type="text/javascript">           window.location.href="http://www.dayanmei.com/";     </script> 2.window.navigate方式跳转   <script language="