| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="DXGL_SMSSendTask.aspx.cs" Inherits="LYZHGDWeb.Communications.DXGL_SMSSendTask" %>
- <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
- <html>
- <head id="Head1" runat="server">
- <title>查看待发送短信</title>
- <base target="_self" />
- <link href="../_common/styles/global.css" rel="stylesheet" type="text/css" />
- <link href="../_common/styles/dialogs.css" rel="stylesheet" type="text/css" />
- <link href="../_common/styles/select.css" rel="stylesheet" type="text/css" />
- <link href="../_common/styles/form.css" rel="stylesheet" type="text/css" />
- <link href="../_common/styles/controls.css" rel="stylesheet" type="text/css" />
- <script src="../_javascripts/globalctrl.js" type="text/javascript"></script>
- <script src="../_common/scripts/calendar.js" type="text/javascript"></script>
- <script src="../_common/scripts/Util.js" type="text/javascript"></script>
-
- <style type="text/css">
- .txtlable
- {
- font-size: 12px;
- width: 100%;
- border-bottom: #7b9ebd 1px solid;
- height: 18px;
- border-left: 0px;
- border-right: 0px;
- border-top: 0px;
- }
- </style>
- </head>
- <body>
- <form id="form1" runat="server"><input name="sign" type="hidden" value="">
- <table border="0" cellpadding="0" cellspacing="0" width="100%">
- <tr>
- <td valign="top" style="padding: 10px;">
- <table width="100%" border="0" cellspacing="3" cellpadding="0">
- <colgroup>
- <col width="80px" align="right" />
- <col />
- </colgroup>
- <tbody>
- <tr>
- <td height="30">
- <span style="color: #ff0000; font-family: Wingdings;">v</span>电话号码:
- </td>
- <td>
- <input type="text" id="txtPhone" class="txtlable" runat="server" style="width: 150px;" />
- </td>
- </tr>
- <tr>
- <td height="30">
- 客户名称:
- </td>
- <td>
- <input type="text" id="txtName" class="txtlable" runat="server" />
- </td>
- </tr>
- <tr>
- <td height="100">
- <span style="color: #ff0000; font-family: Wingdings;">v</span>短信内容:
- </td>
- <td>
- <textarea id="txtContent" runat="server" style="height: 95px;" class="txt"></textarea>
- </td>
- </tr>
- <tr>
- <td height="30">
- 发送时间:
- </td>
- <td>
- <input type="text" id="txtSendTime" class="txtlable" runat="server" style="width: 150px;" />
- </td>
- </tr>
- <tr>
- <td height="30">
- 短信状态:
- </td>
- <td>
- <input type="text" id="txtState" class="txtlable" runat="server" style="width: 150px;" />
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- </tr>
- </table>
- </form>
- </body>
- </html>
|