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

CZGL_FaxSetState.aspx 2.3KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="CZGL_FaxSetState.aspx.cs" Inherits="LYZHGDWeb.Communications.CZGL_FaxSetState" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" >
  4. <head runat="server">
  5. <title>收回传真</title>
  6. <link href="../_common/styles/global.css" rel="stylesheet" type="text/css" />
  7. <link href="../_common/styles/dialogs.css" rel="stylesheet" type="text/css" />
  8. <link href="../_common/styles/select.css" rel="stylesheet" type="text/css" />
  9. <link href="../_common/styles/form.css" rel="stylesheet" type="text/css" />
  10. <link href="../_common/styles/controls.css" rel="stylesheet" type="text/css" />
  11. <link href="../_common/styles/nav.css" rel="stylesheet" type="text/css" />
  12. <link href="../_grid/grid.css" rel="stylesheet" type="text/css" />
  13. <link href="../_grid/AppGrid.css" rel="stylesheet" type="text/css" />
  14. <link href="../_common/styles/menu.css" rel="stylesheet" type="text/css" />
  15. <link href="../_common/styles/tabs.css" rel="stylesheet" type="text/css" />
  16. <script type="text/javascript" src="../_javascripts/globalctrl.js"></script>
  17. <script src="../_javascripts/JS/Timejs.js" type="text/javascript"></script>
  18. </head>
  19. <body>
  20. <form id="form1" runat="server">
  21. <table width="100%" border="0" cellpadding="0" cellspacing="5" align="center" class="stdTable">
  22. <tr>
  23. <td nowrap="nowrap" align="right" bgcolor="#FFFFFF">传真状态:</td>
  24. <td nowrap="nowrap" class="tb_bg5" bgcolor="#FFFFFF">
  25. <asp:DropDownList ID="drpFaxSort" runat="server" Width="124px" CssClass="selectBox">
  26. <asp:ListItem value="0" >未查看</asp:ListItem>
  27. <asp:ListItem Selected="True" value="1">已查看</asp:ListItem>
  28. <asp:ListItem value="2">已下载</asp:ListItem>
  29. <asp:ListItem value="3">回收站</asp:ListItem>
  30. </asp:DropDownList>
  31. </td>
  32. </tr>
  33. <tr>
  34. <td colspan="2" align="center">
  35. <asp:Button ID="btnEdit" runat="server" Text="保存" CssClass="btn"
  36. onclick="btnEdit_Click" />
  37. </td>
  38. </tr>
  39. </table>
  40. </form>
  41. </body>
  42. </html>