CNSA-216-Personal/masterpage/slave1.aspx.cs
2024-03-18 10:09:13 -04:00

31 lines
686 B
C#

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");
}
}
}