FormDesignManager.aspx
上传用户:simon2hong
上传日期:2021-11-18
资源大小:16746k
文件大小:3k
源码类别:

OA系统

开发平台:

C#

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="FormDesignManager.aspx.cs" Inherits="WorkFlow_FormDesignManager" %>
  2. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
  3. <html>
  4. <head>
  5.     <link href="../css/main.css" type="text/css" rel="stylesheet">
  6. </head>
  7. <SCRIPT language="javascript">
  8. function delete_form(FORM_ID)
  9. {
  10.  msg='确认要删除该表单么?这将删除表单描述与字段设置且不可恢复!';
  11.  if(window.confirm(msg))
  12.  {
  13.   URL="form_delete.aspx?form_id="+FORM_ID;
  14.   window.location=URL;
  15.  }
  16. }
  17. //暂保留,未使用
  18. function flow_type(flow_id)
  19. {
  20.   myleft=(screen.availWidth-600)/2;
  21.   window.open("../flow_type/type_edit.aspx?flow_id="+flow_id +"&window=1","flow_type","status=0,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,width=800,height=600,left="+myleft+",top=100");
  22. }
  23. </SCRIPT>
  24.   <SCRIPT language="JavaScript" src="../js/calendar.js"></SCRIPT>
  25. <body bottommargin="0" leftmargin="0" topmargin="0" rightmargin="0">
  26. <form runat="server" id="fm1">
  27.     <br>
  28.     <table class="usertableborder" cellspacing="1" cellpadding="3" width="96%" align="center"
  29.         border="0">
  30.         <tr>
  31.             <th colspan="3" style="height: 25px">
  32.                 表单管理</th>
  33.         </tr>
  34.                <tr>
  35.             <td class="usertablerow2" align="left" style="height: 32px;" colspan="2">
  36.                
  37.           
  38.                 <asp:GridView ID="GridView1" runat="server" AutoGenerateColumns="False" CssClass="usertableborder"
  39.                     OnRowDataBound="GridView1_RowDataBound" PageSize="20" Width="100%">
  40.                     <Columns>
  41.                         <asp:BoundField DataField="ID" HeaderText="ID" />
  42.                         <asp:BoundField DataField="BDMC" HeaderText="表单名称">
  43.                             <ItemStyle HorizontalAlign="Center" />
  44.                         </asp:BoundField>
  45.                                <asp:TemplateField HeaderText="流程分类">
  46.                             <HeaderStyle Width="200px" />
  47.                             <ItemTemplate>
  48.                                 <%#GuiDingShiJian()%>
  49.                             </ItemTemplate>
  50.                             <ItemStyle HorizontalAlign="Center" />
  51.                         </asp:TemplateField>   
  52.                       <asp:TemplateField HeaderText="操作">
  53.                             <HeaderStyle Width="200px" />
  54.                             <ItemTemplate>
  55.                                 <%#CaoZuo()%>
  56.                             </ItemTemplate>
  57.                             <ItemStyle HorizontalAlign="Center" />
  58.                         </asp:TemplateField>           </Columns>
  59.                     <RowStyle CssClass="usertablerow2" />
  60.                     <AlternatingRowStyle CssClass="usertablerow1" />
  61.                 </asp:GridView>
  62.           
  63.          
  64.             </td>
  65.         </tr>
  66.      
  67.     </table>
  68.     <br>
  69.     <table class="usertableborder" cellspacing="1" cellpadding="3" width="96%" align="center"
  70.         border="0">
  71.         <tr>
  72.             <th colspan="2">
  73.                 使用方法</th>
  74.         </tr>
  75.         <tr>
  76.             <td class="usertablerow1" align="right" width="11%">
  77.                 <strong>特殊说明</strong></td>
  78.             <td class="usertablerow1" width="89%">
  79.                 <a href="http://www.woying.net/" target="_blank">挨个填写即可</a></td>
  80.         </tr>
  81.     </table>
  82.     </form>
  83.     
  84. </body>
  85. </html>