using System; using System.Collections; using System.Configuration; using System.Data; using System.Linq; using System.Web; using System.Web.Security; using System.Web.UI; using System.Web.UI.HtmlControls; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts; using System.Xml.Linq; publicpartialclass test : System.Web.UI.Page { protectedvoid Page_Load(object sender, EventArgs e) { string text; text = ((TextBox)PreviousPage.FindControl("TextBox1")).Text; Label1.Text = text; } }