admin_index.jsp

来自「JSP+ORACLE网站开发实例(下).rar」· JSP 代码 · 共 39 行

JSP
39
字号
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>政府网后台管理系统</title>
<script LANGUAGE="JavaScript">
<!--
// Scrolling message settings
var MessageText = "民政后台管理"
var DisplayLength = 260
var pos = 1 - DisplayLength;
function ScrollInStatusBar(){
var scroll = "";
pos++;
if (pos == MessageText.length) pos = 1 - DisplayLength;
if (pos<0) {
for (var i=1; i<=Math.abs(pos); i++)
scroll = scroll + "";
scroll = scroll + MessageText.substring(0, DisplayLength - i + 1);
}
else
scroll = scroll + MessageText.substring(pos, pos + DisplayLength);
window.status = scroll;
//Scrolling speed
setTimeout("ScrollInStatusBar()",50);
}
ScrollInStatusBar()
//-->
</script>
</head>
<frameset rows="*" cols="180,*" framespacing="0" frameborder="no" border="0">
  <frame src="adminleft.jsp" name="leftFrame" scrolling="yes" noresize>
  <frame src="adminbody.jsp" name="main">
</frameset>
<noframes><body>

</body></noframes>
</html>

⌨️ 快捷键说明

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