热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

使用PreviousPage获取源页信息

下面这个例子是演示在MasterPage母板下面。例子始起页放一个TextBox和一个Button,并用PostBackUrl来导向目标页。如:View

下面这个例子是演示在MasterPage母板下面。例子始起页放一个TextBox和一个Button,并用PostBackUrl来导向目标页。如:

View Code
<asp:Content ID&#61;"Content1" ContentPlaceHolderID&#61;"ContentPlaceHolder1" Runat&#61;"Server">
 
<asp:TextBox ID&#61;"TextBox1" runat&#61;"server">asp:TextBox>
 
<asp:Button ID&#61;"Button1" runat&#61;"server" PostBackUrl&#61;"~/Default2.aspx" Text&#61;"Button" />
asp:Content>


在目标页的Page_Load可以写接收数据&#xff0c;把接收到的值显示在Label上&#xff1a;

View Code
 protected void Page_Load(object sender, EventArgs e)
    {
        
if (PreviousPage !&#61; null)
        {
            ContentPlaceHolder cph 
&#61; (ContentPlaceHolder)PreviousPage.Master.FindControl("ContentPlaceHolder1");
            Label1.Text 
&#61; ((TextBox)cph.FindControl("TextBox1")).Text;
        }
    }

 

更多相关资讯&#xff0c;可以参考Microsoft MSDN: http://msdn.microsoft.com/zh-cn/library/ms178139.aspx

 

转:https://www.cnblogs.com/insus/archive/2011/05/19/2050790.html



推荐阅读
author-avatar
倾城修罗__598
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有