<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="RegistrationProcessor.aspx.cs" Inherits="FormControls.RegistrationProcessor" %>
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Student Registration Processor</title>
</head>
<body>
<form id="form1" runat="server">
<h3>Thank you for your interest in joining Temple University.</h3>
<hr />
<h4>Your registration is complete. Here is the information we
received:</h4>
<table>
<tr>
<td>Name: </td>
<td>
<asp:Label ID="lblName" runat="server"></asp:Label>
</td>
</tr>
<tr>
<td>Major: </td>
<td>
<asp:Label ID="lblMajor" runat="server"></asp:Label>
</td>
</tr>
<tr>
<td>Preferred campus: </td>
<td>
<asp:Label ID="lblCampus" runat="server"></asp:Label>
</td>
</tr>
<tr>
<td>
Student status:
</td>
<td>
<asp:Label ID="lblStatus" runat="server"></asp:Label>
</td>
</tr>
</table>
</form>
</body>
</html>