SystemInit.aspx
上传用户:tiancihang
上传日期:2014-03-12
资源大小:21387k
文件大小:2k
源码类别:

.net编程

开发平台:

C#

  1. <%@ page language="C#" autoeventwireup="true" inherits="SysManage_SystemInit, App_Web_smoawntf" theme="Normal" %>
  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.     <script type="text/javascript">
  7.         function CheckConfirm()
  8.         {
  9.              if (confirm("系统提示:您确定要进行系统初始化吗?")) 
  10.     {
  11.         return true;
  12.     }
  13.     return false;
  14.         }
  15.         function Cancel()
  16.         {
  17.              if (confirm("系统提示:您确定要离开系统初始化页吗?")) 
  18.     {
  19.         return true;
  20.     }
  21.     return false;
  22.         }
  23.     </script>
  24. </head>
  25. <body>
  26.     <form id="form1" runat="server">
  27.     <div style="font-size:12px;">
  28.     <table width="100%"  border="0" cellpadding="0" cellspacing="0" >
  29.         <tr valign="middle">
  30.             <td style="height:25px; width:50px;">
  31.              &nbsp;&nbsp;&nbsp;&nbsp;<img alt="" src="image/AddEmp.gif" height="25px" />
  32.             </td>
  33.             <td  align="left" style="font-size:15px">
  34.                 <strong>   系统用户、职工和部门初始化   </strong>
  35.             </td>
  36.         </tr> 
  37.         <tr>
  38.          <td style="background-image:url(../Images/Menu_bg.jpg); height:20px;">
  39.             &nbsp;&nbsp;<img alt="" src="../Images/assignuser.ico" height="15px"/>     
  40.            </td>
  41.           <td style="background-image:url(../Images/Menu_bg.jpg);" align="left">
  42.            </td>
  43.         </tr>
  44.     </table>
  45.     <table style=" height:400px;background-image:url(image/bg.gif); width:700px;">
  46.         <tr>
  47.         <td style="width:70%;"></td>
  48.         <td style="vertical-align:bottom;">
  49.             &nbsp;&nbsp;<asp:ImageButton ID="Init" runat="server" ImageUrl="~/SysManage/image/Init.gif" OnClick="Init_Click" OnClientClick="javascript:return CheckConfirm();" />
  50.             &nbsp;&nbsp;&nbsp;&nbsp;<asp:ImageButton ID="Cancel" runat ="server" ImageUrl="~/SysManage/image/cancel.gif" OnClientClick="javascript:return Cancel();" />
  51.         </td>
  52.     </tr>
  53.     </table>
  54.     </div>
  55.     </form>
  56. </body>
  57. </html>