| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="CZGL_FaxSetState.aspx.cs" Inherits="LYZHGDWeb.Communications.CZGL_FaxSetState" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" >
- <head runat="server">
- <title>收回传真</title>
- <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" />
- <link href="../_common/styles/nav.css" rel="stylesheet" type="text/css" />
- <link href="../_grid/grid.css" rel="stylesheet" type="text/css" />
- <link href="../_grid/AppGrid.css" rel="stylesheet" type="text/css" />
- <link href="../_common/styles/menu.css" rel="stylesheet" type="text/css" />
- <link href="../_common/styles/tabs.css" rel="stylesheet" type="text/css" />
- <script type="text/javascript" src="../_javascripts/globalctrl.js"></script>
- <script src="../_javascripts/JS/Timejs.js" type="text/javascript"></script>
- </head>
- <body>
- <form id="form1" runat="server">
- <table width="100%" border="0" cellpadding="0" cellspacing="5" align="center" class="stdTable">
- <tr>
- <td nowrap="nowrap" align="right" bgcolor="#FFFFFF">传真状态:</td>
- <td nowrap="nowrap" class="tb_bg5" bgcolor="#FFFFFF">
- <asp:DropDownList ID="drpFaxSort" runat="server" Width="124px" CssClass="selectBox">
- <asp:ListItem value="0" >未查看</asp:ListItem>
- <asp:ListItem Selected="True" value="1">已查看</asp:ListItem>
- <asp:ListItem value="2">已下载</asp:ListItem>
- <asp:ListItem value="3">回收站</asp:ListItem>
- </asp:DropDownList>
- </td>
- </tr>
-
- <tr>
- <td colspan="2" align="center">
- <asp:Button ID="btnEdit" runat="server" Text="保存" CssClass="btn"
- onclick="btnEdit_Click" />
- </td>
- </tr>
-
- </table>
- </form>
- </body>
- </html>
|