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

📄 topindex.asp

📁 ASPTest 网络基础网页设计
💻 ASP
字号:
<html>

<head>
<meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=gb2312">
<title>查询方式选择</title>
</head>

<%
Session("rtype") = Request("type")
Session("rname") = Request("name")
%>

<frameset rows="30,*" border="0" frameborder="0" framespacing="0">
  <frame name="header" scrolling="no" target="main" src="SelectType.asp">
  <%
  Dim strSRC
  If Session("SelectType") = "Month" Then
    strSRC = "SelectMonth.asp"
  ElseIf Session("SelectType") = "Year" Then
    strSRC = "SelectYear.asp"
  Else
    strSRC = "SelectDay.asp"
  End If
  %>
  <frame name="main" src="<%=strSRC%>">
</frameset>

</html>

⌨️ 快捷键说明

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