Frame.asp
上传用户:jisenq
上传日期:2014-06-29
资源大小:7216k
文件大小:1k
源码类别:

数据库编程

开发平台:

ASP/ASPX

  1. <% Option Explicit %>
  2. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
  3. <html>
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  6. <title><% = Request("PageTitle") %></title>
  7. <%
  8. Dim RequestItem,ParaList,FileName,Url
  9. ParaList = ""
  10. For Each RequestItem In Request.QueryString
  11. if RequestItem <> "FileName" And RequestItem <> "PageTitle" then
  12. if ParaList = "" then
  13. ParaList = RequestItem & "=" & Server.URLEncode(Request.QueryString(RequestItem))
  14. else
  15. ParaList = ParaList & "&" & RequestItem & "=" & Server.URLEncode(Request.QueryString(RequestItem))
  16. end if
  17. end if
  18. Next
  19. FileName = Request("FileName")
  20. if FileName <> "" then
  21. Url = FileName & "?" & ParaList
  22. else
  23. %>
  24. <script language="JavaScript">
  25. alert('文件不存在');
  26. window.close();
  27. </script>
  28. <%
  29. Response.End
  30. end if
  31. %>
  32. </head>
  33. <body scrolling=no bgcolor="#E6E6E6" topmargin="0" leftmargin="0">
  34. <iframe src=<% = Url %> style="width:100%;height:100%;"  frameborder=0 scrolling="auto"></iframe>
  35. </body>
  36. </html>