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

📄 suggest.aspx

📁 一个较小的采购系统,一些比较实际的代码,可以用来参考
💻 ASPX
字号:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="suggest.aspx.cs" Inherits="suggest" %>

<!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 style=" border:2; position:absolute; left:45px; width: 291px; top: 0px;">
        <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" CellPadding="4"
            DataKeyNames="suggest_id" ForeColor="#333333" GridLines="None" Height="78px"
            OnRowDeleting="GridView1_RowDeleting" Width="670px">
            <FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
            <Columns>
                <asp:BoundField DataField="suggest_title" HeaderText="标题">
                    <ItemStyle Font-Size="Small" />
                </asp:BoundField>
                <asp:BoundField DataField="suggest_date" HeaderText="时间">
                    <ItemStyle Font-Size="Small" />
                </asp:BoundField>
                <asp:BoundField DataField="suggest_session" HeaderText="帐号">
                    <ItemStyle Font-Size="Small" />
                </asp:BoundField>
                <asp:BoundField DataField="suggest_content" HeaderText="内容">
                    <ItemStyle Font-Size="Small" />
                </asp:BoundField>
                <asp:CommandField ShowDeleteButton="True">
                    <ItemStyle Font-Size="Small" />
                </asp:CommandField>
            </Columns>
            <RowStyle BackColor="#EFF3FB" />
            <EditRowStyle BackColor="#2461BF" />
            <SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" />
            <PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" />
            <HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
            <AlternatingRowStyle BackColor="White" />
        </asp:GridView>
    </div>
    </form>
</body>
</html>

⌨️ 快捷键说明

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