query_delstudent_all.aspx

来自「项目开发完整系统」· ASPX 代码 · 共 48 行

ASPX
48
字号
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Query_Delstudent_all.aspx.cs" Inherits="jiaowu_sys_student_allinfo_set_Query_Delstudent_all" %>

<!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>
      <link href="~/css/mm.css" rel="stylesheet" type="text/css" />
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <table border="1" cellpadding="0" cellspacing="0">
            <tr>
                <td colspan="3" style="height: 20px">
                    学生综合信息管理</td>
            </tr>
            <tr>
                <td style="width: 181px">
                    请输入学生学号:</td>
                <td style="width: 100px">
                    <asp:TextBox ID="TBxstudent_num" runat="server"></asp:TextBox></td>
                <td style="width: 237px">
                    <asp:Button ID="BtnQuery" runat="server" OnClick="BtnQuery_Click" Text="搜索" /></td>
            </tr>
            <tr>
                <td colspan="3">
                    <asp:GridView ID="GVstudent_allinfo" runat="server" AutoGenerateColumns="False" OnRowDeleting="GVstudent_allinfo_RowDeleting" DataKeyNames="student_allID" OnRowDataBound="GVstudent_allinfo_RowDataBound">
                        <Columns>
                            <asp:BoundField DataField="student_allID" HeaderText="student_allID" Visible="False" />
                            <asp:BoundField DataField="student_alltype" HeaderText="学生综合信息类型" />
                            <asp:BoundField DataField="student_year" HeaderText="年度信息" />
                            <asp:BoundField DataField="student_term" HeaderText="学期信息" />
                            <asp:BoundField DataField="student_allcontent" HeaderText="学生综合信息内容" />
                            <asp:HyperLinkField DataNavigateUrlFields="student_allID" DataTextField="student_allID"
                                DataTextFormatString="查看" HeaderText="详细信息" DataNavigateUrlFormatString="mod_student_allinfo.aspx?student_allID={0}" />
                            <asp:CommandField ShowDeleteButton="True" />
                        </Columns>
                    </asp:GridView>
                </td>
            </tr>
        </table>
    
    </div>
    </form>
</body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?