<%@ Page Language=C# %>

<!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN 
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd>

<script runat=server>

</script>

<html xmlns=http://www.w3.org/1999/xhtml >
<head runat=server>
    <title>Problem A2</title>
</head>
<body>
    <h2>Problem A2: ncaa-teams</h2>
    <form id=form1 runat=server>
        <asp:Table ID=Table1 runat=server>
            <asp:TableRow runat=server>
                <asp:TableCell runat=server>North Carolina</asp:TableCell>
                <asp:TableCell runat=server>Pittsburgh</asp:TableCell>
                <asp:TableCell runat=server>Connecticut</asp:TableCell>
                <asp:TableCell runat=server>Memphis</asp:TableCell>
            </asp:TableRow>
            <asp:TableRow runat=server>
                <asp:TableCell runat=server>Louiville</asp:TableCell>
                <asp:TableCell runat=server>Oklahoma</asp:TableCell>
                <asp:TableCell runat=server>Michigan State</asp:TableCell>
                <asp:TableCell runat=server>Wake Forest</asp:TableCell>
            </asp:TableRow>
            <asp:TableRow runat=server>
                <asp:TableCell runat=server>Duke</asp:TableCell>
                <asp:TableCell runat=server>Villanova</asp:TableCell>
                <asp:TableCell runat=server>Kansas</asp:TableCell>
                <asp:TableCell runat=server>Gonzaga</asp:TableCell>
            </asp:TableRow>
            <asp:TableRow runat=server>
                <asp:TableCell runat=server>Washington</asp:TableCell>
                <asp:TableCell runat=server>Missouri</asp:TableCell>
                <asp:TableCell runat=server>UCLA</asp:TableCell>
                <asp:TableCell runat=server>Butler</asp:TableCell>
            </asp:TableRow>
        </asp:Table>
        
        <p><asp:Button runat=server ID=btnSubmit Text=Submit /></p>
        
        <p><asp:TextBox runat=server ID=txtTeam /></p>
        
        <p><asp:Literal runat=server ID=litDisplay /></p>
    </form>
</body>
</html>