📄 tabtest.asp
字号:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>分页结构测试</title>
</head>
<body topmargin="0" leftmargin="0" background="MusicBG.gif">
<APPLET CODEBASE="./" NAME="JNaviTab" ARCHIVE="JAVATabF.jar" CODE="JAVATabF.class" WIDTH=397 HEIGHT="26">
<PARAM NAME="Copyright" VALUE="(c)1997-2000 AUSCOMP (www.auscomp.com)">
<PARAM NAME="PROXY" VALUE="No">
<PARAM NAME="IMAGEDIR" VALUE="./">
<PARAM NAME="TAB_BG" VALUE="255,255,255">
<PARAM NAME="TAB_FG" VALUE="0,64,128">
<PARAM NAME="TAB_MOUSEOVER" VALUE="128,0,0">
<PARAM NAME="TAB_FONT" VALUE="Arial; PLAIN;12">
<PARAM NAME="TAB_BG_IMAGE" VALUE="MusicBG.gif">
<PARAM NAME="TABONBOTTOM" VALUE="No">
<PARAM NAME="SHOWTABSONLY" VALUE="No">
<PARAM NAME="TAB_DEFAULT" VALUE="<%=Request("tab")%>">
<%
If Request("tab") = "" OR Request("tab")="0" Then
%>
<PARAM NAME="TAB0" VALUE="日数据; None; None; None; None; None; NO">
<PARAM NAME="TAB1" VALUE="周数据; None; None; None; TabTest.asp?tab=1; _self; NO">
<PARAM NAME="TAB2" VALUE="月数据; None; None; None; TabTest.asp?tab=2; _self; NO">
<PARAM NAME="TAB3" VALUE="年数据; None; None; None; TabTest.asp?tab=3; _self; NO">
<%
ElseIf Request("tab") = "1" Then
%>
<PARAM NAME="TAB0" VALUE="日数据; None; None; None; TabTest.asp?tab=0; _self; NO">
<PARAM NAME="TAB1" VALUE="周数据; None; None; None; None; None; NO">
<PARAM NAME="TAB2" VALUE="月数据; None; None; None; TabTest.asp?tab=2; _self; NO">
<PARAM NAME="TAB3" VALUE="年数据; None; None; None; TabTest.asp?tab=3; _self; NO">
<%
ElseIf Request("tab") = "2" Then
%>
<PARAM NAME="TAB0" VALUE="日数据; None; None; None; TabTest.asp?tab=0; _self; NO">
<PARAM NAME="TAB1" VALUE="周数据; None; None; None; TabTest.asp?tab=1; _self; NO">
<PARAM NAME="TAB2" VALUE="月数据; None; None; None; None; None; NO">
<PARAM NAME="TAB3" VALUE="年数据; None; None; None; TabTest.asp?tab=3; _self; NO">
<%
ElseIf Request("tab") = "3" Then
%>
<PARAM NAME="TAB0" VALUE="日数据; None; None; None; TabTest.asp?tab=0; _self; NO">
<PARAM NAME="TAB1" VALUE="周数据; None; None; None; TabTest.asp?tab=1; _self; NO">
<PARAM NAME="TAB2" VALUE="月数据; None; None; None; TabTest.asp?tab=2; _self; NO">
<PARAM NAME="TAB3" VALUE="年数据; None; None; None; None; None; NO">
<%
End If
%>
</APPLET>
<p>
<%
If Request("tab") = "3" Then
Response.Write "第四页:年数据显示页"
ElseIf Request("tab") = "2" Then
Response.Write "第三页:月数据显示页"
ElseIf Request("tab") = "1" Then
Response.Write "第二页:周数据显示页"
Else
Response.Write "第一页:日数据显示页"
End If
%>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -