订单界面

<%@ Page Language="C#" AutoEventWireup="true" CodeFile="OrderManage.aspx.cs" Inherits="AdminManage_OrderManage" %>

<!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>
    <table style="font-size: 9pt; background-image: url(../Image/例图/后台/后台页.jpg);" bcellpadding="0" cellspacing="0" align="center" height="339" width="500">
            <tr>
                <td colspan="3" style="text-align: right">
                    <asp:Label ID="Label2" runat="server" Text="查询条件:"></asp:Label>
                    <asp:DropDownList ID="ddlCondition" runat="server">
                        <asp:ListItem Value="OrderMember">订货人</asp:ListItem>
                    </asp:DropDownList>
                    <asp:Label ID="Label1" runat="server" Text="关键字:"></asp:Label>
                    <asp:TextBox ID="txtKey" runat="server"></asp:TextBox>
                    <asp:Button ID="btnSel" runat="server" Text="查询" Height="20px" Width="58px" OnClick="btnSel_Click" />
                     
                </td>
            </tr>
            <tr>
                <td colspan="3" style="height: 181px; text-align: center; vertical-align: top;">
                    <asp:GridView ID="gvOrderInfo" runat="server" CellPadding="4" ForeColor="#333333" GridLines="None" AutoGenerateColumns="False" OnRowDataBound="gvOrderInfo_RowDataBound" OnRowDeleting="gvOrderInfo_RowDeleting" AllowPaging="True" PageSize="8" OnPageIndexChanging="gvOrderInfo_PageIndexChanging" Font-Size="9pt" Width="477px">
                        <FooterStyle BackColor="#5D7B9D" Font-Bold="True" ForeColor="White" />
                        <RowStyle BackColor="#F7F6F3" ForeColor="#333333" />
                        <EditRowStyle BackColor="#999999" />
                        <SelectedRowStyle BackColor="#E2DED6" Font-Bold="True" ForeColor="#333333" />
                        <PagerStyle BackColor="#CBCF7A" ForeColor="Black" HorizontalAlign="Right" />
                        <HeaderStyle BackColor="#CBCF7A" Font-Bold="True" ForeColor="White" />
                        <AlternatingRowStyle BackColor="White" ForeColor="#284775" />
                        <Columns>
                            <asp:BoundField DataField="OrderMember" HeaderText="订货人" />
                            <asp:HyperLinkField HeaderText="详细信息" Text="详细信息" DataNavigateUrlFields="OrderMember" DataNavigateUrlFormatString="EditOrder.aspx?OrderMember={0}">
                                <ControlStyle Font-Underline="False" ForeColor="Black" />
                            </asp:HyperLinkField>
                            <asp:CommandField HeaderText="删除" ShowDeleteButton="True">
                                <ControlStyle Font-Underline="False" ForeColor="Black" />
                            </asp:CommandField>
                        </Columns>
                    </asp:GridView>
                </td>
            </tr>
        </table>
    </div>
    </form>
</body>
</html>

  

posted @ 2012-12-21 13:14  foxing  阅读(209)  评论(0)    收藏  举报