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

中间件编程

开发平台:

C#

  1. <%@ Page language="c#" Codebehind="TemplateForm.aspx.cs" AutoEventWireup="false" Inherits="iWebOffice.ocx.c.net.Template.TemplateForm" %>
  2. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" > 
  3. <html>
  4.   <head>
  5.     <title>模板列表选择</title>
  6.     <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  7. <link rel='stylesheet' type='text/css' href='../test.css'>
  8.     <meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
  9.     <meta name="CODE_LANGUAGE" Content="C#">
  10.     <meta name=vs_defaultClientScript content="JavaScript">
  11.     <meta name=vs_targetSchema content="http://schemas.microsoft.com/intellisense/ie5">
  12.     <script language=javascript>
  13. //作用:获得模板名
  14. function CheckValue(theForm)
  15. {
  16.   var mObject = window.dialogArguments;
  17.   mObject.Template=theForm.WordList.value;
  18.   window.close();
  19.   return;
  20. }
  21. </SCRIPT>
  22.   </head>
  23. <body bgcolor="menu">
  24. <form name="iForm">
  25. <table border=0  cellspacing='0' cellpadding='0' width=100% height=100% align=center>
  26. <tr>
  27. <td align=center>
  28.   <table border=0  cellspacing='0' cellpadding='0'>
  29.   <tr>
  30.     <td align=right  nowrap>模版名称:</td>
  31.     <td><%=LoadWordList()%></td>
  32.   </tr>
  33.   <tr>
  34.     <td align=right  nowrap></td>
  35.     <td style="FONT-SIZE: 9pt;COLOR: #3333CC;">模板文件放在Document目录中,同时可以从数据库中读取模板</td>
  36.   </tr>
  37.   </table>
  38. </td>
  39. </tr>
  40. <tr>
  41. <td align=center>
  42. <input type=button value="  确定  " onclick="CheckValue(iForm);">
  43. <input type=button value="  取消  " onclick="window.close();"> 
  44. </td>
  45. </tr>
  46. </table>
  47. </form>
  48. </body>
  49. </html>