⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 select_del_teacher.aspx

📁 项目开发完整系统
💻 ASPX
字号:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="select_del_teacher.aspx.cs" Inherits="select_del_teacher" %>

<!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 cellpadding="0" cellspacing="0" border="1">
            <tr>
                <td colspan="6">
                    教师基本信息查询</td>
            </tr>
            <tr>
                <td style="width: 100px; height: 24px;">
                    教师姓名</td>
                <td style="width: 100px; height: 24px;">
                    <asp:TextBox ID="t_name" runat="server"></asp:TextBox></td>
                <td style="width: 100px; height: 24px;">
                    所属部门</td>
                <td style="width: 100px; height: 24px;">
                    <asp:DropDownList ID="dept" runat="server">
                    </asp:DropDownList></td>
                <td style="width: 100px; height: 24px;">
                    职称</td>
                <td style="width: 100px; height: 24px;">
                    <asp:DropDownList ID="rate" runat="server">
                    </asp:DropDownList></td>
            </tr>
            <tr>
                <td style="width: 100px; height: 27px">
                    是否在职</td>
                <td style="width: 100px; height: 27px">
                    <asp:CheckBox ID="tIS_work" runat="server" /></td>
                <td style="width: 100px; height: 27px">
                    在否解聘</td>
                <td style="width: 100px; height: 27px">
                    <asp:CheckBox ID="tIS_fire" runat="server" /></td>
                <td style="width: 100px; height: 27px">
                    教学组长</td>
                <td style="width: 100px; height: 27px">
                    <asp:CheckBox ID="tIS_head" runat="server" /></td>
            </tr>
            <tr>
                <td colspan="6" style="height: 27px">
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
                    &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
                    &nbsp;
                    <asp:Button ID="btn_select" runat="server" Text="查询" OnClick="btn_select_Click" /></td>
            </tr>
        </table>
        <br />
    
    </div>
        <asp:GridView ID="select_info" runat="server" Width="611px" Visible="False" AutoGenerateColumns="False" AllowPaging="True" AllowSorting="True" OnRowDataBound="select_info_RowDataBound" OnRowDeleting="select_info_RowDeleting" DataKeyNames="teacher_ID">
            <Columns>
                <asp:BoundField DataField="teacher_ID" ReadOnly="True" Visible="False" />
                <asp:BoundField DataField="teacher_name" HeaderText="姓名" />
                <asp:BoundField DataField="teacher_sex" HeaderText="性别" />
                <asp:BoundField DataField="teacher_age" HeaderText="年龄" />
                <asp:BoundField DataField="teacher_phone" HeaderText="联系电话" />
                <asp:BoundField DataField="teacher_email" HeaderText="电子邮箱" />
                <asp:HyperLinkField HeaderText="详细信息"
                    Text="选择" DataNavigateUrlFields="teacher_ID" DataNavigateUrlFormatString="~/human_manage_system/teacher_manage/teacher_set/alt_teacher.aspx?teacherID={0}" DataTextField="teacher_ID" DataTextFormatString="查看" />
                <asp:CommandField ShowDeleteButton="True" />
            </Columns>
        </asp:GridView>
    </form>
</body>
</html>

⌨️ 快捷键说明

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