TemplateList.aspx
上传用户:hbbfjy2008
上传日期:2015-02-05
资源大小:5616k
文件大小:2k
源码类别:

中间件编程

开发平台:

C#

  1. <%@ Page language="c#" Codebehind="TemplateList.aspx.cs" AutoEventWireup="false" Inherits="iWebOffice.ocx.c.net.Template.TemplateList" %>
  2. <html>
  3. <head>
  4. <title>模板管理</title>
  5. <link rel='stylesheet' type='text/css' href='../test.css'>
  6. <script language="javascript">
  7. function ConfirmDel(FileUrl){
  8. if (confirm('是否确定删除该模板!')){
  9. location.href=FileUrl;
  10. }
  11. }
  12. function DoMenu(MenuValue){
  13.     location.href=MenuValue;
  14.     return true;
  15. }
  16. </script>
  17. </head>
  18. <body bgcolor="#ffffff">
  19. <div align="center"><font size="4" color="ff0000">模板管理</font></div>
  20. <hr size="1">
  21. <br>
  22. <table border="0" cellspacing='0' cellpadding='0' width="100%" align="center" class="TBStyle">
  23. <tr>
  24. <td colspan=4 class="TDTitleStyle" nowrap>
  25.   <input type=button name="AddDocTemplate" value="新建word模板"  onclick="javascript:location.href='TemplateEdit.aspx?FileType=.doc';">
  26.   <input type=button name="AddXslTemplate" value="新建excel模板" onclick="javascript:location.href='TemplateEdit.aspx?FileType=.xls';">
  27.   <input type=button name="AddXslTemplate" value="新建wps模板" onclick="javascript:location.href='TemplateEdit.aspx?FileType=.wps';">
  28.   <input type=button name="AddDocTemplate" value="新建金山表格模板"  onclick="javascript:location.href='TemplateEdit.aspx?FileType=.et';">
  29.   <input type=button name="AddXslTemplate" value="新建ppt模板" onclick="javascript:location.href='TemplateEdit.aspx?FileType=.ppt';">
  30.   <input type=button name="AddXslTemplate" value="新建visio模板" onclick="javascript:location.href='TemplateEdit.aspx?FileType=.vsd';">
  31.   <input type=button name="Return" value="返 回"  onclick="javascript:location.href='../DocumentList.aspx';">
  32. </td>
  33. <td colspan="3" class="TDTitleStyle">&nbsp;</td>
  34. </tr>
  35. <tr>
  36. <td nowrap align="center" class="TDTitleStyle" height="26">编号</td>
  37. <td nowrap align="center" class="TDTitleStyle">模板名称</td>
  38. <td nowrap align="center" class="TDTitleStyle">模板类型</td>
  39. <td nowrap align="center" class="TDTitleStyle">模板说明</td>
  40. <td nowrap align="center" class="TDTitleStyle">操作</td>
  41. </tr>
  42. <%=GetTemplateList()%>
  43. </table>
  44. </body>
  45. </html>