SystemInit.aspx
上传用户:tiancihang
上传日期:2014-03-12
资源大小:21387k
文件大小:2k
- <%@ page language="C#" autoeventwireup="true" inherits="SysManage_SystemInit, App_Web_smoawntf" theme="Normal" %>
- <!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>
- <script type="text/javascript">
- function CheckConfirm()
- {
- if (confirm("系统提示:您确定要进行系统初始化吗?"))
- {
- return true;
- }
- return false;
- }
- function Cancel()
- {
- if (confirm("系统提示:您确定要离开系统初始化页吗?"))
- {
- return true;
- }
- return false;
- }
- </script>
- </head>
- <body>
- <form id="form1" runat="server">
- <div style="font-size:12px;">
- <table width="100%" border="0" cellpadding="0" cellspacing="0" >
- <tr valign="middle">
- <td style="height:25px; width:50px;">
- <img alt="" src="image/AddEmp.gif" height="25px" />
- </td>
- <td align="left" style="font-size:15px">
- <strong> 系统用户、职工和部门初始化 </strong>
- </td>
- </tr>
- <tr>
- <td style="background-image:url(../Images/Menu_bg.jpg); height:20px;">
- <img alt="" src="../Images/assignuser.ico" height="15px"/>
- </td>
- <td style="background-image:url(../Images/Menu_bg.jpg);" align="left">
- </td>
- </tr>
- </table>
- <table style=" height:400px;background-image:url(image/bg.gif); width:700px;">
- <tr>
- <td style="width:70%;"></td>
- <td style="vertical-align:bottom;">
- <asp:ImageButton ID="Init" runat="server" ImageUrl="~/SysManage/image/Init.gif" OnClick="Init_Click" OnClientClick="javascript:return CheckConfirm();" />
- <asp:ImageButton ID="Cancel" runat ="server" ImageUrl="~/SysManage/image/cancel.gif" OnClientClick="javascript:return Cancel();" />
- </td>
- </tr>
- </table>
- </div>
- </form>
- </body>
- </html>