我有一个名为webform1的页面,它有几个文本框和一个按钮,我想将数据传递给webform2上的几个标签。
WebForm1按钮:
<asp:Button ID="btnCrossPage" runat="server" Text="Button" PostBackUrl="~/Webform2.aspx" />
代码背后 webform 1:
public partial class webform1 : System.Web.UI.Page
{
}
public string Name
{
get{ return txtName.Text;}
}
public string Email
{
get{ return txtEmai.Text;}
}
Webform2代码背后:
public partial class Webform2: System.Web.UI.Page
{
Webform1 pPage = (Webform1)this.PreviousPage;
if(pPage != null && pPage.IsCrossPagePostBack)
{
lblName.Text = pPage.Name;
lblEmail.Text = pPage.Email;
}
Visual Studio不允许我在没有出现红线的情况下在WebForm2中引用WebForm1,有人能看到原因吗?
答案 0 :(得分:0)
嗯,一次,&#34; webForm1&#34;拼写错误,应该是&#34; WebForm1&#34;。此外,您可以使用PreviousPageType指令:
<%@ Page Language="C#" PreviousPageType="WebForm1" %>