| default.asp |
|
<html> <head> <title>Redirecionamento</title> </head> <frameset rows="*,20%"> <frameset cols="60%,*"> <frame name="Menu" src="menu.asp" target="_self"> <frame name="Principal" src="pagina.asp" target="_self"> </frameset> <frame name="Embaixo" src="embaixo.asp" target="_self"> </frameset> </html> |
| menu.asp |
|
<html> <head> <title>Menu</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="expires" content="0"> <base target="Principal"> </head> <body> <table width="100%"> <tr><td><a href="redireciona.asp?origem=Principal">Quadro Principal</a></td></tr> <tr><td><a target="Embaixo" href="redireciona.asp?origem=Embaixo">Quadro Embaixo</a></td></tr> <tr><td><a target="_blank" href="redireciona.asp?origem=_blank">Nova janela (_blank)</a></td></tr> <tr><td><a target="_top" href="redireciona.asp?origem=_top" >Janela inteira (_top)</a></td></tr> </table> </body> </html> |
| redireciona.asp |
|
<html> <head> <title>Redirecionar</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="expires" content="0"> </head> <body> <% =Response.Redirect ("pagina.asp?origem=" & Request.QueryString ("origem")) %> </body> </html> |
| pagina.asp |
|
<html> <head> <title>Página</title> <meta http-equiv="pragma" content="no-cache"> <meta http-equiv="expires" content="0"> </head> <body> <% =Request.QueryString ("origem") %><br> Hora: <% =Time %> </body> </html> |
| embaixo.asp |
|
<html> <head> <title>Embaixo</title> </head> <body> EMBAIXO </body> </html> |
