Default.aspx
上传用户:xy99169
上传日期:2022-08-03
资源大小:139k
文件大小:1k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

ASP/ASPX

  1. <%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" >
  4. <head runat="server">
  5.     <title>无标题页</title>
  6. </head>
  7. <body>
  8.     <form id="form1" runat="server">
  9.     <div>
  10.         &nbsp;<asp:Panel ID="Panel1" runat="server" GroupingText="添加学生" Width="400px">
  11.             学号:<asp:TextBox ID="txtID" runat="server"></asp:TextBox><br />
  12.             姓名:<asp:TextBox ID="txtName" runat="server"></asp:TextBox><br />
  13.             所在班级:<asp:DropDownList ID="drpClass" runat="server">
  14.             </asp:DropDownList><br />
  15.             联系电话:<asp:TextBox ID="txtPhone" runat="server"></asp:TextBox><br />
  16.             <asp:Button ID="btnAdd" runat="server" OnClick="btnAdd_Click" Text="添加学生" /></asp:Panel>
  17.         <br />
  18.         <asp:Panel ID="Panel2" runat="server" GroupingText="学生信息列表" Width="400px">
  19.             <asp:ListBox ID="lbxStudentInfo" runat="server" AutoPostBack="True" OnSelectedIndexChanged="lbxStudentInfo_SelectedIndexChanged"
  20.                 Width="353px"></asp:ListBox></asp:Panel>
  21.     
  22.     </div>
  23.         <br />
  24.         <asp:Panel ID="Panel3" runat="server" GroupingText="查看学生详细信息" Width="400px">
  25.             <asp:Label ID="labStudent" runat="server"></asp:Label></asp:Panel>
  26.     </form>
  27. </body>
  28. </html>