If you don't have PHP but instead ASP, I think the difference would be...
...but I'm no ASP expert so this may be entirely wrong.HTML Code:<% ' set value for frame if ( Request.Querystring("p") == null ) { include = "default.html" } else { include = Request.Querystring("p") & ".html" } %> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title> Test for iframe url passthrough, main page </title> </head> <body> <iframe id="myiframe" src="<%=include%>" width="400" height="400" frameborder="yes">Sorry your browser doesn't support Inline Frames. Please consider donating your computer to a museum and upgrading.</iframe> </body> </html>
Sean