⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 index.jsp

📁 这是一个用jsp+Oracle开发的联系人客户关系管理系统!
💻 JSP
字号:
<%
/**********************************************************
Copyright (C),2003-10-15, Beijing  USTB.
All rights reserved.
Filename: index.jsp
Author: 
Version 1.0
Date:2003-10-14
Description:系统管理的框架页面
Other:
Variable List:

Function List:

History:
***********************************************************/
%>
<%@page language="java" contentType="text/html;charset=GBK"%>
<%@page import="com.util.DealString"%>
<%
	//登录超时
	if((String)session.getAttribute("zgbh")==null)
	{
		response.sendRedirect("../session.htm");
	}
%>
<%
	DealString ds = new DealString();
	//取得菜单类别
	String strType = ds.toString((String)request.getParameter("txt_type"));
	if(strType.equals(""))strType = "1";

	//错误码
	String errcode = ds.toString((String)request.getParameter("errcode"));
	if(errcode.equals(""))errcode = "0";
	if(!errcode.equals("0"))response.sendRedirect("../err.jsp?ip=sysman/index.jsp&txt_type="+strType+"&errcode="+errcode);

	//编号
	String strID = ds.toString((String)request.getParameter("txt_id"));

	//字典名称
	String strDict = ds.toString((String)request.getParameter("txt_dict"));

	//增删改类型
	String strEdit = ds.toString((String)request.getParameter("txt_edit"));

	String childfile = "";
	String txt = "此部分为左边菜单模块名称的维护模块,用以给用户分配操作权限<br>1.系统管理员拥有所有操作权限,可以进行系统维护,增删改人员,为人员分配权限<br>2.联系人只能修改自己的信息和选择自己的客户<br>3.客户只能修改自己的信息";
	if(strType.equals("2"))
	{
		txt = "供系统管理为用户分配操作权限";
	}


%><html>
<head>
<title>主页</title>

</head>

<body bgcolor="#FFFFFF" background="../graphics/backgrnd.jpg" leftmargin="15" topmargin="15" marginwidth="15" marginheight="15">
<table width="550" border="0" cellspacing="0" cellpadding="0">
<tr>
<td width=50></td><td align="left" valign=top    width="500" height="320"><%=txt%></td>
</tr>
</table>
<br>
<table width="583" border="0" cellspacing="0" cellpadding="0">
	
<tr>
		
<td>
<table width="80%" border="0" cellspacing="5" cellpadding="0" align="center">
				
<tr bgcolor="#000000"> 
					
<td><img src="../graphics/0.gif" width="1" height="1"></td>
</tr>
				
<tr align="center"> 
					
<td> 
						
<p>版权所有<font face="Arial, Helvetica, sans-serif">&copy;</font>  <font face="Arial, Helvetica, sans-serif">Powered by limited space</font></p>
</td>
</tr>
			
</table>
</td>
</tr>
</table>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -