GetPrjSerial.aspx
上传用户:tiancihang
上传日期:2014-03-12
资源大小:21387k
文件大小:2k
源码类别:

.net编程

开发平台:

C#

  1. <%@ page language="C#" autoeventwireup="true" inherits="Workflow_GetPrjSerial, App_Web_-rs7x2pk" theme="Normal" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" >
  4. <head runat="server">
  5. <link href="style/gridStyle.css" rel="stylesheet" type="text/css" />
  6.     <title>项目分类</title>
  7. </head>
  8. <body>
  9.     <form id="form1" runat="server">
  10.         <div  style="text-indent:2em;height:260px; overflow-x:hidden;overflow-y:auto; width:100%;">
  11.           <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" DataKeyNames="SerialName" BackColor="#CDCDCF" BorderWidth="0px"
  12.                CssClass="Grid"  SelectedRowStyle-CssClass="SelectedRow" RowStyle-CssClass="HeadingCellText"  
  13.        FooterStyle-CssClass="GridFooter"  ShowFooter="true" CellSpacing="1" CellPadding="0"
  14.                style="width:100%"   AllowPaging="false" AllowSorting="false">         
  15.                            
  16.                  <AlternatingRowStyle BackColor="#F0F0F0" />
  17. <RowStyle BackColor="#F9FAFC" CssClass="HeadingCellText" />
  18.   <HeaderStyle Height="25px" BackColor="#DFDFDF" CssClass="GridHeader" />
  19.                   <Columns>
  20.                         <asp:BoundField DataField="SerialName"  HeaderText="项目类别">
  21.                            <HeaderStyle Width="40%"/>
  22.                         </asp:BoundField>
  23.                         <asp:BoundField DataField="num"  HeaderText="数量">
  24.                             <HeaderStyle Width="30%"/>
  25.                         </asp:BoundField>
  26.                         <asp:BoundField DataField="ChargeSum"  HeaderText="总金额">
  27.                             <HeaderStyle Width="30%"/>
  28.                         </asp:BoundField>
  29.                     
  30.                    </Columns>
  31.                   <FooterStyle CssClass="GridFooter" />
  32.         <PagerStyle CssClass="GridPage" />
  33.              </asp:GridView>
  34.          </div>
  35.   
  36.     </form>
  37. </body>
  38. </html>