You can use QueryString or Sessions to handle this,
Pass the textvalue in Query string
Response.Redirect("WebForm1.aspx?Name="+txtbox1.Text);
And to get the querystring value you can use like this
if (Request.QueryString["Name"]!= null)
string txtValue = Request.QueryString["Name"];