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

📄 admin_message_add.aspx

📁 这是一个在线报修系统的管理程序
💻 ASPX
字号:
<%@ page validaterequest="false" language="C#" autoeventwireup="true" inherits="Admin_Admin_Message_Add, App_Web_2de4qqid" %>

<!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="../Images/Style.css" rel="stylesheet" type="text/css" />
</head>
<body style="margin: 1px">
    <form id="form1" runat="server">
    <div>
        <table border="0" cellpadding="0" cellspacing="1" style="width: 100%; background-color: gainsboro">
            <tr>
                <td colspan="2" style="height: 35px; background-color: aliceblue; text-align: center">
                    添加留言</td>
            </tr>
            <tr>
                <td style="width: 20%; height: 35px; background-color: aliceblue; text-align: center">
                    留言标题</td>
                <td style="width: 80%; height: 35px; background-color: #ffffff; text-align: left">&nbsp;
                    <asp:TextBox ID="Title" runat="server" BorderStyle="Groove" Height="20px" Width="350px"></asp:TextBox></td>
            </tr>
            <tr>
                <td style="width: 20%; height: 35px; background-color: aliceblue; text-align: center">
                    接收人员</td>
                <td style="width: 80%; height: 35px; background-color: #ffffff; text-align: left">&nbsp;
                    <asp:DropDownList ID="DropDownListFixer" runat="server" DataSourceID="SqlDS" DataTextField="FixerName" DataValueField="FixerID">
                    </asp:DropDownList></td>
            </tr>
            <tr>
                <td style="width: 20%; height: 300px; background-color: aliceblue; text-align: center">
                    留言内容</td>
                <td style="width: 80%; height: 300px; background-color: #ffffff; text-align: center" align="center">
                   <asp:TextBox ID="txtMessage" runat="server" BorderStyle="Groove" Height="300px" TextMode="MultiLine" Width="98%"></asp:TextBox></td>
            </tr>
            <tr>
                <td style="width: 20%; height: 35px; background-color: aliceblue; text-align: center">
                    <asp:Label ID="lblMsg" runat="server"></asp:Label></td>
                <td style="width: 80%; height: 35px; background-color: #ffffff; text-align: center">
                    <asp:ImageButton ID="btnOK" runat="server" ImageUrl="~/Images/form_submit.gif" OnClick="btnOK_Click" /></td>
            </tr>
        </table>
    
    </div>
        <asp:SqlDataSource ID="SqlDS" runat="server" ConnectionString="<%$ ConnectionStrings:SQLConnection %>" SelectCommand="Admin_Select_Fixer" SelectCommandType="StoredProcedure"></asp:SqlDataSource>
    </form>
</body>
</html>

⌨️ 快捷键说明

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