Visualizzazione dei risultati da 1 a 7 su 7

Discussione: aperture link in frame

  1. #1

    aperture link in frame

    salve a tutti sono disperato... ecco il mio problema: ho creato una pagina web con frame, in un frame (che dovrebbe fare da menù) ho inserito dei link, quando clicco su uno di questi link la pagina viene caricata nel frame dove è presente il link, ma io vorrei che viene caricata nel frame che si trova al centro. Come devo fare per fare questo? Come software uso FrontPage 2003. Grazie a tutti

  2. #2

    Re: aperture link in frame

    Originariamente inviato da satstory
    ma io vorrei che viene caricata
    Che venisse Innanzitutto

    Poi se sei in balia di FrontPage (senza QUOTE ) ti consiglio una cosa Sat, posta la porzione di codice che contiene sia il menù che il "target" del menù.
    Probabilmente trattasi di un errore banale di indirizzamento
    «Se non vi è rimasta molta anima e lo sapete, vi resta ancora dell'anima.»
    Occhio all' Ursupanaru!

  3. #3

    Re: Re: aperture link in frame

    Originariamente inviato da Henry.Chinaski
    Che venisse Innanzitutto

    Poi se sei in balia di FrontPage (senza QUOTE ) ti consiglio una cosa Sat, posta la porzione di codice che contiene sia il menù che il "target" del menù.
    Probabilmente trattasi di un errore banale di indirizzamento

    Ciao Henry grazie per la risposta... Allora ecco il sito: http://www.satstory.altervista.org

    Codice:

    <html>

    <head>
    <title>SAT STORY</title>
    </head>

    <frameset rows="216,*,53">
    <frame name="top" scrolling="no" noresize target="contents" src="http://www.satstory.altervista.org/logo.htm">
    <frameset cols="187,*">
    <frame name="contents" target="main" src="http://www.satstory.altervista.org/altriargomenti.htm">
    <frame name="main" src="http://www.satstory.altervista.org/telepiu.htm">
    </frameset>
    <frame name="bottom" scrolling="no" noresize target="contents" src="http://www.satstory.altervista.org/notizie.htm">
    <noframes>
    <body>



    This page uses frames, but your browser doesn't support them.</p>

    </body>
    </noframes>
    </frameset>

    </html>


    PS: L'immagine sopra non si vede perchè ho sbagliato a caricarla... errore mio!
    Il menù è quello a sinistra (Altri Argomenti)
    Vorrei che cliccando in una voce di altri argomenti venisse caricata la pagine nel frame centrale e non nel frame Altri Argomenti...

    Grazie

  4. #4

  5. #5
    Originariamente inviato da Vincent.Zeno
    NOTA TECNICA

    Mi scuso molto per il codice... non accadrà più...

    Qualcuno sa aiutarmi per risolvere il problema?

  6. #6
    Utente di HTML.it L'avatar di Prill
    Registrato dal
    Oct 2006
    Messaggi
    2,947
    Ciao Satstory, togli quel target inserito come attributo dei frames:

    codice:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <title>SAT STORY</title>
    </head>
    
    <frameset rows="216,*,53">
      <frame name="top" scrolling="no" noresize src="http://www.satstory.altervista.org/logo.htm">
    <frameset cols="187,*">
    <frame name="contents" src="http://www.satstory.altervista.org/altriargomenti.htm">
    <frame name="main" src="http://www.satstory.altervista.org/telepiu.htm">
    </frameset>
    <frame name="bottom" scrolling="no" noresize src="http://www.satstory.altervista.org/notizie.htm">
    <noframes>
    <body>
    
    
    
    This page uses frames, but your browser doesn't support them.</p>
    
    </body>
    </noframes>
    </frameset>
    </html>
    e aggiungilo invece come attributo dei tuoi link specificando il frame in cui vuoi il link si apra. Se deve aprirsi nel frame "main" avrai quindi per esempio

    codice:
    Decoder
    e così per tutti gli altri link

  7. #7
    Utente di HTML.it L'avatar di Prill
    Registrato dal
    Oct 2006
    Messaggi
    2,947
    Ciao Satstory, togli quel target inserito come attributo dei frames:

    codice:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN" "http://www.w3.org/TR/html4/frameset.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <title>SAT STORY</title>
    </head>
    
    <frameset rows="216,*,53">
      <frame name="top" scrolling="no" noresize src="http://www.satstory.altervista.org/logo.htm">
    <frameset cols="187,*">
    <frame name="contents" src="http://www.satstory.altervista.org/altriargomenti.htm">
    <frame name="main" src="http://www.satstory.altervista.org/telepiu.htm">
    </frameset>
    <frame name="bottom" scrolling="no" noresize src="http://www.satstory.altervista.org/notizie.htm">
    <noframes>
    <body>
    
    
    
    This page uses frames, but your browser doesn't support them.</p>
    
    </body>
    </noframes>
    </frameset>
    </html>
    e aggiungilo invece come attributo dei tuoi link specificando il frame in cui vuoi il link si apra. Se deve aprirsi nel frame "main" avrai quindi per esempio

    codice:
    Decoder
    e così per tutti gli altri link

Permessi di invio

  • Non puoi inserire discussioni
  • Non puoi inserire repliche
  • Non puoi inserire allegati
  • Non puoi modificare i tuoi messaggi
  •  
Powered by vBulletin® Version 4.2.1
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved.