首页 > 跨页面传送

跨页面传送



Page1.aspx:

 

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Page1.aspx.cs" Inherits="Application.跨页面传送.Page1" %>

 



 



 

     

 

 

     


     


         

         
             runat="server" Text="Button" PostBackUrl="~/跨页面传送/Page2.aspx" />

     


     


 

 

 





Page2.aspx:

 

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Page2.aspx.cs" Inherits="Application.跨页面传送.Page2" %>

 



 



 

     

 

 

     


     


         

     

   


     


 

 

 





Page2.aspx.cs:

 

using System;

 using System.Collections.Generic;

 using System.Linq;

 using System.Web;

 using System.Web.UI;

 using System.Web.UI.WebControls;

 

namespace Application.跨页面传送

 {

     public partial class Page2 : System.Web.UI.Page

     {

         protected void Page_Load(object sender, EventArgs e)

         {

             #region 第一部分

             if (PreviousPage != null)

             {

                 TextBox myTextBox = PreviousPage.FindControl("aaaa") as TextBox;

                 if (myTextBox != null)

                 {

                     this.Label1.Text = myTextBox.Text;

                 }

             }

             #endregion

 

        }

     }

 }



Page0.aspx:

 

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Page0.aspx.cs" Inherits="Application.跨页面传送.Page0" %>

 



 



 

     

 

 

     


     


         

         

     


     


 

 

 

转载于:https://www.cnblogs.com/qiqiBoKe/archive/2012/10/17/2791577.html

更多相关:

  • 下面是几个常用命令行工具,先截图,再描述 在生成环境调试的命令 sudo gdb ./traffic_server -p $(pidof traffic_server)  -batch  -x  [macro_file] 参考文献 [1].ATS Debugging Fall Summ...

  • 在下面的例子中,我们在一个 .aspx 文件中声明了一个 TextBox 控件和一个 Label 控件。当您更改了 TextBox 中的值,并且在 TextBox 外单击时,change 子例程就会被执行。change 子例程会向 Label 控件写一条文本: