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

DXGL_SMSSendTask.aspx 3.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="DXGL_SMSSendTask.aspx.cs" Inherits="LYZHGDWeb.Communications.DXGL_SMSSendTask" %>
  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. </head>
  28. <body>
  29. <form id="form1" runat="server"><input name="sign" type="hidden" value="">
  30. <table border="0" cellpadding="0" cellspacing="0" width="100%">
  31. <tr>
  32. <td valign="top" style="padding: 10px;">
  33. <table width="100%" border="0" cellspacing="3" cellpadding="0">
  34. <colgroup>
  35. <col width="80px" align="right" />
  36. <col />
  37. </colgroup>
  38. <tbody>
  39. <tr>
  40. <td height="30">
  41. <span style="color: #ff0000; font-family: Wingdings;">v</span>电话号码:
  42. </td>
  43. <td>
  44. <input type="text" id="txtPhone" class="txtlable" runat="server" style="width: 150px;" />
  45. </td>
  46. </tr>
  47. <tr>
  48. <td height="30">
  49. 客户名称:
  50. </td>
  51. <td>
  52. <input type="text" id="txtName" class="txtlable" runat="server" />
  53. </td>
  54. </tr>
  55. <tr>
  56. <td height="100">
  57. <span style="color: #ff0000; font-family: Wingdings;">v</span>短信内容:
  58. </td>
  59. <td>
  60. <textarea id="txtContent" runat="server" style="height: 95px;" class="txt"></textarea>
  61. </td>
  62. </tr>
  63. <tr>
  64. <td height="30">
  65. 发送时间:
  66. </td>
  67. <td>
  68. <input type="text" id="txtSendTime" class="txtlable" runat="server" style="width: 150px;" />
  69. </td>
  70. </tr>
  71. <tr>
  72. <td height="30">
  73. 短信状态:
  74. </td>
  75. <td>
  76. <input type="text" id="txtState" class="txtlable" runat="server" style="width: 150px;" />
  77. </td>
  78. </tr>
  79. </tbody>
  80. </table>
  81. </td>
  82. </tr>
  83. </table>
  84. </form>
  85. </body>
  86. </html>