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

📄 frame.asp

📁 asp源码 图片ASP整站
💻 ASP
字号:
<% Option Explicit %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title><% = Request("PageTitle") %></title>
<%
Dim RequestItem,ParaList,FileName,Url
ParaList = ""
For Each RequestItem In Request.QueryString
	if RequestItem <> "FileName" And RequestItem <> "PageTitle" then
		if ParaList = "" then
			ParaList = RequestItem & "=" & Request.QueryString(RequestItem)
		else
			ParaList = ParaList & "&" & RequestItem & "=" & Request.QueryString(RequestItem)
		end if
	end if
Next
FileName = Request("FileName")
if FileName <> "" then
	Url = FileName & "?" & ParaList
else
	%>
	<script language="JavaScript">
		alert('文件不存在');
		window.close();
	</script>
	<%
	Response.End
end if
%>
</head>
<body scrolling=no bgcolor="#E6E6E6" topmargin="0" leftmargin="0">
<iframe src=<% = Url %> style="width:100%;height:100%;"  frameborder=0 scrolling="auto"></iframe>
</body>
</html>

⌨️ 快捷键说明

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