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

CZGL_FaxCloseAddLast.aspx 2.1KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="CZGL_FaxCloseAddLast.aspx.cs" Inherits="LYZHGDWeb.Communications.CZGL_FaxCloseAddLast" %>
  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 language="javascript" type="text/javascript">
  18. function checknull() {
  19. var ctr = document.getElementById("txtLast");
  20. if (ctr.value == '') {
  21. alert(" 不能为空!");
  22. return false;
  23. }
  24. return true;
  25. }
  26. </script>
  27. </head>
  28. <body>
  29. <form id="form1" runat="server">
  30. <table width="100%" border="0" cellpadding="0" cellspacing="5" align="center" class="stdTable">
  31. <tr>
  32. <td align="center">将添加:<asp:TextBox ID="txtLast" runat="server" Width="124px" CssClass="txt"></asp:TextBox>条</td>
  33. </tr>
  34. <tr>
  35. <td align="center">
  36. <asp:Button ID="btnEdit" runat="server" Text="确定"
  37. OnClientClick="return checknull();" CssClass="btn" onclick="btnEdit_Click"/>
  38. </td>
  39. </tr>
  40. </table>
  41. </form>
  42. </body>
  43. </html>