洛阳中航光电项目,为12年项目,此处使用反编译工具恢复源码,恢复为.netframe4.0版本,但仍需使用ie8访问; 数据库使用oracle,现再192.168.8.3服务器,访问账户scott,密码800100

CZGL_FaxSendTask.aspx 4.9KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="CZGL_FaxSendTask.aspx.cs" Inherits="LYZHGDWeb.Communications.CZGL_FaxSendTask" %>
  2. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
  3. <html>
  4. <head id="Head1" runat="server">
  5. <title>查看待发送传真</title>
  6. <base target="_self" />
  7. <link href="../_common/styles/global.css" rel="stylesheet" type="text/css" />
  8. <link href="../_common/styles/dialogs.css" rel="stylesheet" type="text/css" />
  9. <link href="../_common/styles/select.css" rel="stylesheet" type="text/css" />
  10. <link href="../_common/styles/form.css" rel="stylesheet" type="text/css" />
  11. <link href="../_common/styles/controls.css" rel="stylesheet" type="text/css" />
  12. <script src="../_javascripts/globalctrl.js" type="text/javascript"></script>
  13. <script src="../_common/scripts/calendar.js" type="text/javascript"></script>
  14. <script src="../_common/scripts/Util.js" type="text/javascript"></script>
  15. <style type="text/css">
  16. .txtlable
  17. {
  18. font-size: 12px;
  19. width: 100%;
  20. border-bottom: #7b9ebd 1px solid;
  21. height: 18px;
  22. border-left: 0px;
  23. border-right: 0px;
  24. border-top: 0px;
  25. }
  26. </style>
  27. <script type="text/javascript">
  28. function ShowFax(tifpath, webpath) {
  29. try {
  30. window.showModalDialog("CZGL_FaxShow.aspx?tifpath=" + tifpath + "&webpath=" + webpath, window, "dialogwidth:880px;dialogheight:600px;center:yes;status:no;scroll:yes;help:no");
  31. }
  32. catch (e) { }
  33. }
  34. </script>
  35. </head>
  36. <body>
  37. <form id="form1" runat="server"><input name="sign" type="hidden" value="">
  38. <table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%">
  39. <tr>
  40. <td valign="top" style="padding: 10px;" height="100%">
  41. <table width="100%" border="0" cellspacing="3" cellpadding="0" height="100%">
  42. <colgroup>
  43. <col width="80px" align="right" />
  44. <col />
  45. <col width="80px" align="right" />
  46. <col />
  47. <col width="80px" align="right" />
  48. <col />
  49. </colgroup>
  50. <tbody>
  51. <tr>
  52. <td height="30">
  53. <span style="color: #ff0000; font-family: Wingdings;">v</span>传真号码:
  54. </td>
  55. <td>
  56. <input type="text" id="txtPhone" class="txtlable" runat="server" style="width: 150px;" />
  57. </td>
  58. <td height="30">
  59. 发送时间:
  60. </td>
  61. <td>
  62. <input type="text" id="txtSendTime" class="txtlable" runat="server" style="width: 150px;" />
  63. </td>
  64. <td height="30">
  65. 传真状态:
  66. </td>
  67. <td>
  68. <input type="text" id="txtState" class="txtlable" runat="server" style="width: 150px;" />
  69. </td>
  70. </tr>
  71. <tr>
  72. <td height="30">
  73. 客户名称:
  74. </td>
  75. <td colspan="5">
  76. <input type="text" id="txtName" class="txtlable" runat="server" />
  77. </td>
  78. </tr>
  79. <tr style="display:none;">
  80. <td height="30">
  81. <span style="color: #ff0000; font-family: Wingdings;">v</span>传真内容:
  82. </td>
  83. <td colspan="5">
  84. <input type="text" id="txtContents" class="txtlable" runat="server" />
  85. </td>
  86. </tr>
  87. <tr style="display:none;">
  88. <td>&nbsp;
  89. </td>
  90. <td colspan="5">
  91. <div id="divDetail" runat="server" style="width:100%; padding:10px 0px;"></div>
  92. </td>
  93. </tr>
  94. <tr>
  95. <td height="100%" colspan="6" style="width:100%;">
  96. <iframe id="ShowFax" src='CZGL_FaxShow.aspx' runat="server" style='width:100%; height:100%; border:0px;' frameborder="0"></iframe>
  97. </td>
  98. </tr>
  99. </tbody>
  100. </table>
  101. </td>
  102. </tr>
  103. </table>
  104. </form>
  105. </body>
  106. </html>