- Home
- Categorie
- Coding e Sistemistica
- HTML e CSS
- Problema: prendere un comando da un iframe e passarlo ad un altro
-
Problema: prendere un comando da un iframe e passarlo ad un altro
Ciao a tutti, ho un insolito problema.
ho due iframe inseriti in una pagina all'interno della tabella in questa maniera:<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td rowspan="2"><iframe src="sinistra.htm" width="217" height="366" border="0" frameborder="no" scrolling="no" framespacing="0"></iframe></td>
<td rowspan="2"><img src="../img/07.jpg" width="11" height="366" alt=""></td>
<td rowspan="2"><iframe src="destra.htm" width="462" height="366" border="0" frameborder="no" scrolling="no" framespacing="0"></iframe></td>
<td><img src="../img/09.jpg" width="49" height="191" alt=""></td>
</tr>
.
.
.Ora l'iframe "sinistra" contiene dei link che si dovrebbero aprire nell'iframe "destra" e visto che nell'iframe non si può usare il target ho creato un file .asp che fa questo lavoro:
<!--#include file="../Comuni.asp" -->
<%
Dim Codice
Dim oggetto
'***** Leggo il Template *****
FileHtm = LeggiFileHtm ("destra.htm")
Codice = Request.QueryString("Codice")
'***** Creo l'oggetto *****
oggetto = "box_lente/" & Codice & ".swf"
'***** Scrivo il Template *****
FileHtm = Replace(FileHtm, "box_lente/centro.swf", oggetto, 1, 1, 1)
Response.ExpiresAbsolute = #May 31,1980 13:30:15#
Response.Write FileHtm
Response.End%>
Quindi in poche parole sostituisce una riga di codice html nella pagina destra con il contenuto della variabile "oggetto"
A questo punto però la pagina che dovrebbe aprirsi al posto di "destra"
si apre comunque nell'iframe "sinistra". Come posso fare??:(
Grazie in anticipo per l'aiuto!!:o
(Spero di non aver sbagliato sezione ero in dubbio se metterlo in Html o in Asp)