using System; using System.Web.UI; namespace masterpage { public partial class slave1 : Page { public string fnmae; public string lname; public string address; public string phone; public string email; protected void Page_Load(object sender, EventArgs e) { } protected void SubmitButton_Click(object sender, EventArgs e) { fnmae = FirstNameTextBox.Text; lname = LastNameTextBox.Text; address = AddressTextBox.Text; phone = PhoneTextBox.Text; Response.Redirect("thank.aspx"); } } }