The information in this article applies to:
SUMMARYMicrosoft Active Server Pages can be used to prevent Web browsers from calling a document that is supposed to be displayed as a part of a frameset. MORE INFORMATION
Web documents that are part of a frameset are often not designed for
individual display. To prevent users from viewing these documents outside
of their appropriate frameset, you can use the Internet Information Server
(IIS) Active Server Pages (ASP) "Response.Redirect" and
"Request.ServerVariables" methods to redirect Hypertext Transfer Protocol
(HTTP) requests to the frameset page.
place the following code in frame1.asp or frame2.asp before the opening
<HTML> tag:
NOTE: You must put this code at the beginning of your document because "Response.Redirect" does not work if any HTML code occurs before it. For more information on this, please see the following article in the Microsoft Knowledge Base:
Q159402 How To Use Response.Redirect in a Server ScriptIn this code, the first part of the If statement (Request.ServerVariables("HTTP_REFERER")= "") checks to see if you connected to the page directly by typing the URL into the browser. If you connect to the page this way, a "referer" is not found in the header and the browser is redirected to the main page that contains the frameset. The second half of the If statement is (Left(Request.ServerVariables("HTTP_REFERER"),42) <> "http://www.myserver.com/AppDir/mainfrm.htm"). This line checks to see that you connected to frame1.asp from the frameset page(mainfrm.htm). If not, the browser is redirected to the main page containing the frameset. The line:
redirects the browser to the following page: http://www.myserver.com/AppDir/mainfrm.htm.You can use the following code to demonstrate this. Save each in a separate file and use the names indicated below. Also, you need to make the following modifications to the code in the frame1.asp file:
File: Mainfrm.htm
File: Frame1.asp
File: Frame2.asp
REFERENCESFor the latest Knowledge Base articles and other support information on Visual InterDev and Active Server Pages, see the following page on the Microsoft Technical Support site: http://support.microsoft.com/support/vinterdev/ Additional query words: 1.00 kbdsi
Keywords : kbASP kbASPObj kbScript kbGrpASP kbCodeSnippet kbiis500 |
Last Reviewed: December 7, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |