there is a buttn and text box on page 1st
whatever user write in ths texbox
should display in anotehr page label
i am trying this
public String gettext
{
get
{
return TextBox1.Text;
}
}
Server.Transfer("Default2.aspx");
page 2 coding---------------
Label2.Text = PreviousPage.gettext;
but its not working