Why can't I use the CrossPage1.aspx page objects in the CrossPage2.aspx page. For example, on the CrossPage2.aspx page I have an ESRP one lable and I want to write in this lable text regarding the CrossPage1.aspx page, does not work, what are the problems?
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="CrossPage1.aspx.cs" Inherits="CrossPage1" %> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>CrossPage1</title> </head> <body> <form id="form1" runat="server" > <div> <asp:TextBox runat="server" ID="txtFirstName"></asp:TextBox> <asp:TextBox runat="server" ID="txtLastName"></asp:TextBox> <asp:Button runat="server" ID="cmdSubmit" PostBackUrl="CrossPage2.aspx" Text="Submit" /> </div> </form> </body> </html>