
04/05/2002, 00:16
|
| | Fecha de Ingreso: enero-2001
Mensajes: 222
Antigüedad: 24 años, 3 meses Puntos: 0 | |
Re: link com frame igual a foros web Mira, sin explicaciones, solo copia y pega, que hay trae las instrucciones..
liga.asp(o lo que se te de la gana)
<%
' Create a variable to note the referring page
previous_page=trim(request.servervariables("h ttp_referer"))
' Create a variable for the url of the page the user is clicking to
url=trim(request.querystring("url"))
' If there is no referring page or no link to redirect to
' then send the user elsewhere. This can be another page stating
' that something was missing from the request, but here we'll just
' refer all bad requests to yahoo.com
if url ="" then
response.redirect "index.asp"
end if
%>
<html>
<title>Inmundo.com</title>
<frameset frameborder="0" framespacing="0" border="0" rows="53,*">
<frame
src="frame_navegante.asp?url=<%= url %>&previous_page=<%= previous_page %>"
NAME="navigation"
marginwidth="0"
marginheight="0"
scrolling="no"
noresize
bordercolor="#ffffff">
<%'-- Content Frame --%>
<frame
src="<%= url %>"
name="contentframe"
bordercolor="#FFFFFF">
<%'-- No Frames --%>
<noframes>
<body bgcolor="#ffffff">
Tu browser ta muy viejo y no acepta marcos(frames)<br>
Actualiza tu chingadera y dale <a href="<%= url %>">akí</a> pa continuar en mi obra magna <br>
<%= url %>
</body>
</noframes>
</frameset>
</html> |