webform页面传值

2024-02-02 08:08
文章标签 页面 传值 webform

本文主要是介绍webform页面传值,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1、get方式

发送页

<form id="form1" runat="server"><div><a href="WebForm2.aspx?name=5">调转到Form2</a><asp:Button ID="button2" Text="跳转页面" runat="server" οnclick="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" οnclick="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();
}

这篇关于webform页面传值的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/670034

相关文章

Vue中组件之间传值的六种方式(完整版)

《Vue中组件之间传值的六种方式(完整版)》组件是vue.js最强大的功能之一,而组件实例的作用域是相互独立的,这就意味着不同组件之间的数据无法相互引用,针对不同的使用场景,如何选择行之有效的通信方式... 目录前言方法一、props/$emit1.父组件向子组件传值2.子组件向父组件传值(通过事件形式)方

Android WebView无法加载H5页面的常见问题和解决方法

《AndroidWebView无法加载H5页面的常见问题和解决方法》AndroidWebView是一种视图组件,使得Android应用能够显示网页内容,它基于Chromium,具备现代浏览器的许多功... 目录1. WebView 简介2. 常见问题3. 网络权限设置4. 启用 JavaScript5. D

Flutter监听当前页面可见与隐藏状态的代码详解

《Flutter监听当前页面可见与隐藏状态的代码详解》文章介绍了如何在Flutter中使用路由观察者来监听应用进入前台或后台状态以及页面的显示和隐藏,并通过代码示例讲解的非常详细,需要的朋友可以参考下... flutter 可以监听 app 进入前台还是后台状态,也可以监听当http://www.cppcn

MySQL表锁、页面锁和行锁的作用及其优缺点对比分析

《MySQL表锁、页面锁和行锁的作用及其优缺点对比分析》MySQL中的表锁、页面锁和行锁各有特点,适用于不同的场景,表锁锁定整个表,适用于批量操作和MyISAM存储引擎,页面锁锁定数据页,适用于旧版本... 目录1. 表锁(Table Lock)2. 页面锁(Page Lock)3. 行锁(Row Lock

禁止HTML页面滚动的操作方法

《禁止HTML页面滚动的操作方法》:本文主要介绍了三种禁止HTML页面滚动的方法:通过CSS的overflow属性、使用JavaScript的滚动事件监听器以及使用CSS的position:fixed属性,每种方法都有其适用场景和优缺点,详细内容请阅读本文,希望能对你有所帮助... 在前端开发中,禁止htm

Java多线程父线程向子线程传值问题及解决

《Java多线程父线程向子线程传值问题及解决》文章总结了5种解决父子之间数据传递困扰的解决方案,包括ThreadLocal+TaskDecorator、UserUtils、CustomTaskDeco... 目录1 背景2 ThreadLocal+TaskDecorator3 RequestContextH

SpringMVC前后端传值的几种实现方式

《SpringMVC前后端传值的几种实现方式》本文主要介绍了SpringMVC前后端传值的方式实现,包括使用HttpServletRequest、HttpSession、Model和ModelAndV... 目录一、从Controller层到JSP界面1、使用HttpServletRequest的方式2、使

使用JavaScript将PDF页面中的标注扁平化的操作指南

《使用JavaScript将PDF页面中的标注扁平化的操作指南》扁平化(flatten)操作可以将标注作为矢量图形包含在PDF页面的内容中,使其不可编辑,DynamsoftDocumentViewer... 目录使用Dynamsoft Document Viewer打开一个PDF文件并启用标注添加功能扁平化

SpringBoot如何访问jsp页面

《SpringBoot如何访问jsp页面》本文介绍了如何在SpringBoot项目中进行Web开发,包括创建项目、配置文件、添加依赖、控制层修改、测试效果以及在IDEA中进行配置的详细步骤... 目录SpringBoot如何访问JSP页python面简介实现步骤1. 首先创建的项目一定要是web项目2. 在

如何在页面调用utility bar并传递参数至lwc组件

1.在app的utility item中添加lwc组件: 2.调用utility bar api的方式有两种: 方法一,通过lwc调用: import {LightningElement,api ,wire } from 'lwc';import { publish, MessageContext } from 'lightning/messageService';import Ca