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

OA系统

开发平台:

C#

  1. <%@ Page Language="C#" %>
  2. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" >
  3. <HTML>
  4. <HEAD>
  5. <title>表单智能设计器</title>
  6. <meta name="GENERATOR" Content="Microsoft Visual Studio .NET 7.1">
  7. <meta name="CODE_LANGUAGE" Content="C#">
  8. <meta name="vs_defaultClientScript" content="JavaScript">
  9. <meta name="vs_targetSchema" content="http://schemas.microsoft.com/intellisense/ie5">
  10. <script Language="JavaScript">
  11. function CheckFile()
  12. {
  13.    if (document.Form1.fileHtml.value=="")
  14.    { alert("请选择附件!");
  15.      return (false);
  16.    }   
  17.    return true;
  18. }
  19. </script>
  20. </HEAD>
  21. <body class="bodycolor" topmargin="5">
  22. <form id="Form1" method="post" runat="server">
  23. <asp:Panel id="pnlMain" runat="server">
  24. <TABLE class="small" cellSpacing="0" cellPadding="3" width="100%" border="0">
  25. <TR>
  26. <TD class="Big"><IMG src="/images/green_arrow.gif" align="absMiddle"><SPAN class="big3">
  27. 导入表单</SPAN><BR>
  28. </TD>
  29. </TR>
  30. </TABLE>
  31. <BR>
  32. <DIV class="Big1" align="center"><B>请指定表单文本文件或HTML文件:<BR>
  33. <BR>
  34. </B><INPUT class="BigInput" id="fileHtml" type="file" name="fileHtml" runat="server">&nbsp;
  35. <INPUT class="BigButton" onclick="return CheckFile();" type="submit" value="导入">
  36. <STRONG>
  37. <BR>
  38. </STRONG>
  39. <BR>
  40. <INPUT class="BigButton" onclick="location='index.aspx'" type="button" value="返回">
  41. </DIV>
  42. </asp:Panel>
  43. <asp:Literal id="litMessage" runat="server"></asp:Literal>
  44. </form>
  45. </body>
  46. </HTML>