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

📄 index.jsp

📁 电信的网厅的整站代码
💻 JSP
字号:
<%@ page contentType="text/html; charset=GBK"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
        "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
	<title>网上客服论坛管理子系统</title>
	<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
	<script language="JavaScript" src="../../common/mainTool.js"></script>
	<style>
        frameset,frame, body { margin: 0px; }
    </style>
    <%
    String queryString = request.getQueryString();
    String listSrc = "list.jsp";
    if ( queryString != null ) {
    	//String sPurvICode = request.getParameter("code");
    	//if(sPurvICode.startsWith("BBS010")){//下载专区是不同的展现页面
		//    listSrc = "downloadList.jsp";
		//}
    	listSrc = listSrc + "?" + queryString;
    }
    %>
</head>
<frameset name="oframeSet" framespacing="0" rows="100%,0"">
	<frame border="0" name="main" borderColor="#418ace" src="<%= listSrc%>"
		frameBorder="no" scrolling="no" target="bottom">
	<FRAME border="0" name="bottom" bordercolor="#418ace" frameborder="no"
		scrolling="no" noResize>
	<noframes>
	<body>
	<p>此网页使用了框架,但您的浏览器不支持框架。</p>
	</body>
	</noframes>
</frameset>
</html>

⌨️ 快捷键说明

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