DraftList.aspx
上传用户:xuming1973
上传日期:2014-02-27
资源大小:17511k
文件大小:7k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

C#

  1. <%@ Page language="c#" Codebehind="DraftList.aspx.cs" AutoEventWireup="false" Inherits="UDS.SubModule.UnitiveDocument.DocumentFlow.DraftList" %>
  2. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
  3. <HTML>
  4. <HEAD>
  5. <title>DraftList</title>
  6. <meta content="Microsoft Visual Studio .NET 7.1" name="GENERATOR">
  7. <meta content="C#" name="CODE_LANGUAGE">
  8. <meta content="JavaScript" name="vs_defaultClientScript">
  9. <meta content="http://schemas.microsoft.com/intellisense/ie5" name="vs_targetSchema">
  10. <LINK href="../../../Css/BasicLayout.css" type="text/css" rel="stylesheet">
  11. </HEAD>
  12. <body leftMargin="0" topMargin="0" rightMargin="0" MS_POSITIONING="GridLayout">
  13. <P><FONT face="宋体">
  14. <FORM id="WebForm1" method="post" runat="server">
  15. <FONT face="宋体">
  16. <TABLE id="Table1" cellSpacing="0" cellPadding="0" width="100%" border="0">
  17. <TR>
  18. <TD vAlign="top" height="38">
  19. <TABLE id="Table3" borderColor="#111111" height="1" cellSpacing="0" cellPadding="0" width="100%"
  20. border="0">
  21. <TR height="30">
  22. <TD class="GbText" align="right" width="20" background="../../../Images/treetopbg.jpg"
  23. bgColor="#c0d9e6"><FONT color="#003366" size="3"><IMG height="16" src="../../../DataImages/DocFlow.gif" width="16"></FONT></TD>
  24. <TD class="GbText" align="right" width="60" background="../../../Images/treetopbg.jpg"
  25. bgColor="#e8f4ff"><FONT color="#006699">文档流转</FONT></TD>
  26. <TD class="GbText" align="right" background="../../../Images/treetopbg.jpg" bgColor="#e8f4ff"><FONT face="宋体"><asp:button id="cmdQuery" runat="server" Width="50px" Text="查询" CssClass="buttoncss"></asp:button><asp:button id="cmdNewDocument" runat="server" Width="54px" Text="撰稿" CssClass="buttoncss"></asp:button>&nbsp;&nbsp;&nbsp;</FONT></TD>
  27. </TR>
  28. </TABLE>
  29. </TD>
  30. </TR>
  31. <TR>
  32. <TD>
  33. <TABLE class="gbtext" id="Table2" height="24" cellSpacing="0" cellPadding="0" width="100%"
  34. border="0">
  35. <TR>
  36. <TD align="center" width="90" background="../../../Images/maillistbutton1.gif"><asp:linkbutton id="lbMyRead" runat="server" CssClass="Newbutton">我的批阅</asp:linkbutton></TD>
  37. <TD align="center" width="90" background="../../../Images/maillistbutton1.gif"><asp:linkbutton id="lbMyRequisition" runat="server" CssClass="Newbutton">我的申请</asp:linkbutton></TD>
  38. <TD align="center" width="90" background="../../../Images/maillistbutton1.gif"><asp:linkbutton id="lbMyApproved" runat="server" CssClass="Newbutton">已经批阅</asp:linkbutton></TD>
  39. <TD align="center" width="90" background="../../../Images/maillistbutton2.gif"><asp:linkbutton id="lbDraftList" runat="server" CssClass="Newbutton">拟稿箱</asp:linkbutton></TD>
  40. <%if(bManageFlow==true){%>
  41. <TD align="center" width="90" background="../../../Images/maillistbutton1.gif">&nbsp;
  42. <asp:linkbutton id="lbFlowManage" runat="server" CssClass="Newbutton">流程管理</asp:linkbutton></TD>
  43. <%}%>
  44. <%else {%>
  45. <TD align="center" width="90">&nbsp;
  46. </TD>
  47. <%}%>
  48. <TD align="center">&nbsp;</TD>
  49. </TR>
  50. </TABLE>
  51. </TD>
  52. </TR>
  53. <TR>
  54. <TD><asp:datagrid id="dgDraftList" runat="server" Width="100%" Font-Size="X-Small" PageSize="15" CellPadding="3"
  55. BorderWidth="1px" BorderStyle="None" BorderColor="#93BEE2" BackColor="White" OnPageIndexChanged="DataGrid_PageChanged"
  56. AllowPaging="True" AllowSorting="True" AutoGenerateColumns="False">
  57. <SelectedItemStyle Font-Bold="True" ForeColor="#CCFF99" BackColor="#009999"></SelectedItemStyle>
  58. <AlternatingItemStyle Font-Size="X-Small" HorizontalAlign="Center" BackColor="#E8F4FF"></AlternatingItemStyle>
  59. <ItemStyle Font-Size="X-Small" HorizontalAlign="Center" ForeColor="#003399" BackColor="White"></ItemStyle>
  60. <HeaderStyle HorizontalAlign="Center" ForeColor="White" VerticalAlign="Middle" BackColor="#337FB2"></HeaderStyle>
  61. <FooterStyle ForeColor="#003399" BackColor="#99CCCC"></FooterStyle>
  62. <Columns>
  63. <asp:TemplateColumn HeaderText="ID">
  64. <HeaderStyle Width="2%"></HeaderStyle>
  65. <ItemTemplate>
  66. <asp:CheckBox id="Flow_ID" runat="server"></asp:CheckBox>
  67. </ItemTemplate>
  68. </asp:TemplateColumn>
  69. <asp:TemplateColumn HeaderText="文档标题">
  70. <HeaderStyle HorizontalAlign="Left"></HeaderStyle>
  71. <ItemStyle HorizontalAlign="Left"></ItemStyle>
  72. <ItemTemplate>
  73. <asp:HyperLink runat="server" Text='<%# DataBinder.Eval(Container, "DataItem.Title") %>' NavigateUrl='<%# GetDisplayDocumentUrl(DataBinder.Eval(Container, "DataItem.Doc_ID").ToString())%>'>
  74. </asp:HyperLink>
  75. </ItemTemplate>
  76. </asp:TemplateColumn>
  77. <asp:BoundColumn DataField="DocBuilder" HeaderText="拟稿人">
  78. <HeaderStyle Width="10%"></HeaderStyle>
  79. </asp:BoundColumn>
  80. <asp:HyperLinkColumn DataNavigateUrlField="FLOW_ID" DataNavigateUrlFormatString="DisplayFlow.aspx?FlowID={0}"
  81. DataTextField="FlowName" HeaderText="流程图例">
  82. <HeaderStyle HorizontalAlign="Center" Width="20%"></HeaderStyle>
  83. <ItemStyle Font-Size="X-Small" HorizontalAlign="Center"></ItemStyle>
  84. </asp:HyperLinkColumn>
  85. <asp:TemplateColumn HeaderText="当前步骤">
  86. <HeaderStyle Width="10%"></HeaderStyle>
  87. <ItemTemplate>
  88. <asp:HyperLink runat="server" Text='<%# DataBinder.Eval(Container, "DataItem.StepName") %>' NavigateUrl='<%#GetDisplayStepMemberUrl(DataBinder.Eval(Container, "DataItem.Doc_ID").ToString()) %>'>
  89. </asp:HyperLink>
  90. </ItemTemplate>
  91. </asp:TemplateColumn>
  92. <asp:BoundColumn DataField="Short_Doc_Added_Date" HeaderText="拟稿时间">
  93. <HeaderStyle Width="10%"></HeaderStyle>
  94. </asp:BoundColumn>
  95. <asp:BoundColumn DataField="Status" HeaderText="状态">
  96. <HeaderStyle Font-Size="X-Small" HorizontalAlign="Center" Width="8%"></HeaderStyle>
  97. <ItemStyle Font-Size="X-Small" HorizontalAlign="Center"></ItemStyle>
  98. </asp:BoundColumn>
  99. </Columns>
  100. <PagerStyle NextPageText="" Font-Size="X-Small" HorizontalAlign="Right" ForeColor="#003399"
  101. BackColor="#E8F4FF" Mode="NumericPages"></PagerStyle>
  102. </asp:datagrid></TD>
  103. </TR>
  104. </TABLE>
  105. </FONT>
  106. </FORM>
  107. </FONT>
  108. </P>
  109. </body>
  110. </HTML>