CNSA-216-Personal/masterpage/slave1.aspx.cs

31 lines
686 B
C#
Raw Permalink Normal View History

2024-03-18 07:09:13 -07:00
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");
}
}
}