store.aspx
资源名称:web.rar [点击查看]
上传用户:xrffrp
上传日期:2022-03-25
资源大小:22155k
文件大小:2k
源码类别:
OA系统
开发平台:
ASP/ASPX
- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="store.aspx.cs" Inherits="web_pos_store" %>
- <!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/style.css" rel="stylesheet" type="text/css" />
- </head>
- <body>
- <form id="form1" runat="server">
- <div>
- <center>
- </center>
- <asp:GridView ID="UrlList" runat="server" AllowPaging="True" AllowSorting="True"
- AutoGenerateColumns="False" BackColor="White" BorderColor="#CCCCCC" BorderStyle="None"
- BorderWidth="1px" CellPadding="3" DataSourceID="SqlDataSource1"
- OnRowDataBound="UrlList_RowDataBound" PageSize="20" Style="position: relative; left: 202px; top: 2px;"
- Width="400px">
- <FooterStyle BackColor="White" ForeColor="#000066" />
- <RowStyle ForeColor="#000066" />
- <Columns>
- <asp:BoundField DataField="name" HeaderText="POS門店名稱" SortExpression="name" />
- </Columns>
- <PagerStyle BackColor="White" ForeColor="#000066" HorizontalAlign="Left" />
- <SelectedRowStyle BackColor="#669999" Font-Bold="True" ForeColor="White" />
- <HeaderStyle BackColor="Navy" Font-Bold="True" ForeColor="White" />
- </asp:GridView>
- <asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="<%$ ConnectionStrings:oaConnection %>"
- SelectCommand="SELECT name,id FROM dbo.OA_POS_URL WHERE (is_freeze = 'N') ORDER BY sequence">
- </asp:SqlDataSource>
- </div>
- </form>
- </body>
- </html>