Default.aspx
上传用户:xy99169
上传日期:2022-08-03
资源大小:139k
文件大小:1k
- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" >
- <head runat="server">
- <title>无标题页</title>
- </head>
- <body>
- <form id="form1" runat="server">
- <div>
- <asp:Panel ID="Panel1" runat="server" GroupingText="添加学生" Width="400px">
- 学号:<asp:TextBox ID="txtID" runat="server"></asp:TextBox><br />
- 姓名:<asp:TextBox ID="txtName" runat="server"></asp:TextBox><br />
- 所在班级:<asp:DropDownList ID="drpClass" runat="server">
- </asp:DropDownList><br />
- 联系电话:<asp:TextBox ID="txtPhone" runat="server"></asp:TextBox><br />
- <asp:Button ID="btnAdd" runat="server" OnClick="btnAdd_Click" Text="添加学生" /></asp:Panel>
- <br />
- <asp:Panel ID="Panel2" runat="server" GroupingText="学生信息列表" Width="400px">
- <asp:ListBox ID="lbxStudentInfo" runat="server" AutoPostBack="True" OnSelectedIndexChanged="lbxStudentInfo_SelectedIndexChanged"
- Width="353px"></asp:ListBox></asp:Panel>
-
- </div>
- <br />
- <asp:Panel ID="Panel3" runat="server" GroupingText="查看学生详细信息" Width="400px">
- <asp:Label ID="labStudent" runat="server"></asp:Label></asp:Panel>
- </form>
- </body>
- </html>