| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="CZGL_FaxSendTask.aspx.cs" Inherits="LYZHGDWeb.Communications.CZGL_FaxSendTask" %>
- <!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>
- <script type="text/javascript">
- function ShowFax(tifpath, webpath) {
- try {
- window.showModalDialog("CZGL_FaxShow.aspx?tifpath=" + tifpath + "&webpath=" + webpath, window, "dialogwidth:880px;dialogheight:600px;center:yes;status:no;scroll:yes;help:no");
- }
- catch (e) { }
- }
- </script>
- </head>
- <body>
- <form id="form1" runat="server"><input name="sign" type="hidden" value="">
- <table border="0" cellpadding="0" cellspacing="0" width="100%" height="100%">
- <tr>
- <td valign="top" style="padding: 10px;" height="100%">
- <table width="100%" border="0" cellspacing="3" cellpadding="0" height="100%">
- <colgroup>
- <col width="80px" align="right" />
- <col />
- <col width="80px" align="right" />
- <col />
- <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>
- <td height="30">
- 发送时间:
- </td>
- <td>
- <input type="text" id="txtSendTime" class="txtlable" runat="server" style="width: 150px;" />
- </td>
- <td height="30">
- 传真状态:
- </td>
- <td>
- <input type="text" id="txtState" class="txtlable" runat="server" style="width: 150px;" />
- </td>
- </tr>
- <tr>
- <td height="30">
- 客户名称:
- </td>
- <td colspan="5">
- <input type="text" id="txtName" class="txtlable" runat="server" />
- </td>
- </tr>
- <tr style="display:none;">
- <td height="30">
- <span style="color: #ff0000; font-family: Wingdings;">v</span>传真内容:
- </td>
- <td colspan="5">
- <input type="text" id="txtContents" class="txtlable" runat="server" />
- </td>
- </tr>
- <tr style="display:none;">
- <td>
- </td>
- <td colspan="5">
- <div id="divDetail" runat="server" style="width:100%; padding:10px 0px;"></div>
- </td>
- </tr>
- <tr>
- <td height="100%" colspan="6" style="width:100%;">
- <iframe id="ShowFax" src='CZGL_FaxShow.aspx' runat="server" style='width:100%; height:100%; border:0px;' frameborder="0"></iframe>
- </td>
- </tr>
- </tbody>
- </table>
- </td>
- </tr>
- </table>
- </form>
- </body>
- </html>
|