Visualizzazione dei risultati da 1 a 6 su 6
  1. #1

    Errore Validazione pagina con frames

    Ciao a tutti,

    ho creato una pagina con frames, ma nonostante abbia messo un DOCTYPE consigliatomi
    dal sito http://www.w3.org/TR/html401/present/frames.html,

    mi da il seguente errore:
    No Character Encoding Found! Falling back to UTF-8.

    avete un'idea per risolvere questo problema

    grazie

    vito

    ************************************************** *******
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
    "http://www.w3.org/TR/html4/frameset.dtd">
    <html>
    <head>
    <title></title>
    </head>
    <frameset framespacing="0" border="0" frameborder="0" rows="81,*,12%">
    <frame name="intestazione" scrolling="no" noresize target="principale" src="3.html">
    <frame name="principale" src="1.html" scrolling="auto">
    <frame name="principale1" src="2.html" scrolling="no">
    <noframes>
    <body>


    La pagina corrente utilizza i frame. Questa caratteristica non è
    supportata dal browser in uso.</p>
    </body>
    </noframes>
    </frameset>
    </html>

  2. #2
    Devi mettere un meta per la codifica dei caratteri, ad esempio:
    codice:
    <meta http-equiv="content-type" content="text/html;charset=ISO-8859-1" />
    FEDERIX.IT - [Pillola] GRAFICA DEI FORM

    ...ho ancora quella forza che ti serve, quando dici "Si comincia!"

  3. #3
    Ti ringrazio,

    ma non ha funzionato, ho provato svariati meta ma nulla fa fare.

    ciao

    vito

  4. #4
    Rispetto a prima inserendo questo meta:

    ************************************************** **********

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
    "http://www.w3.org/TR/html4/frameset.dtd">
    <html>
    <head>
    <title></title>
    <meta http-equiv="content-type" content="text/html;charset=ISO-8859-1">
    </head>
    <frameset framespacing="0" border="0" frameborder="0" rows="81,*,12%">
    <frame name="intestazione" scrolling="no" noresize target="principale" src="1.html">
    <frame name="principale" src="2.html" scrolling="auto">
    <frame name="principale1" src="3" scrolling="no">
    <noframes>
    <body>


    La pagina corrente utilizza i frame. Questa caratteristica non è
    supportata dal browser in uso.</p>
    </body>
    </noframes>
    </frameset>
    </html>

    ************************************************** ***

    mi da i seguenti errori:

    This page is not Valid HTML 4.01 Frameset!

    Error Line 8 column 23: there is no attribute "FRAMESPACING".
    <frameset framespacing="0" border="0" frameborder="0" rows="81,*,12%">You have used the attribute named above in your document, but the document type you are using does not support that attribute for this element. This error is often caused by incorrect use of the "Strict" document type with a document that uses frames (e.g. you must use the "Transitional" document type to get the "target" attribute), or by using vendor proprietary extensions such as "marginheight" (this is usually fixed by using CSS to achieve the desired effect instead).

    This error may also result if the element itself is not supported in the document type you are using, as an undefined element will have no supported attributes; in this case, see the element-undefined error message for further information.

    How to fix: check the spelling and case of the element and attribute, (Remember XHTML is all lower-case) and/or check that they are both allowed in the chosen document type, and/or use CSS instead of this attribute. If you received this error when using the <embed> element to incorporate flash media in a Web page, see the FAQ item on valid flash.



    Error Line 8 column 34: there is no attribute "BORDER".
    <frameset framespacing="0" border="0" frameborder="0" rows="81,*,12%">✉

    Error Line 8 column 50: there is no attribute "FRAMEBORDER".
    <frameset framespacing="0" border="0" frameborder="0" rows="81,*,12%">✉

    Error Line 9 column 59: there is no attribute "TARGET".
    <frame name="intestazione" scrolling="no" noresize target="principale" src="TopFollow_Up.html">

    grazie

    vito

  5. #5
    Se leggi bene le risposte del validatore, vedrai che la soluzione la trovi di sicuro, come per esempio, se l'attributo BORDER non è valido, o scritto male, è logico che va corretto o eliminato.
    FEDERIX.IT - [Pillola] GRAFICA DEI FORM

    ...ho ancora quella forza che ti serve, quando dici "Si comincia!"

  6. #6
    Grazie ho risolto come mi hai indicato tu,togliendo le istruzioni, non pensavo funzionasse sia la validazione che la visualizzazione della pagina.

    ************************************************** ***

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Frameset//EN"
    "http://www.w3.org/TR/html4/frameset.dtd">
    <html>
    <head>
    <title></title>
    <meta http-equiv="content-type" content="text/html;charset=ISO-8859-1">
    </head>
    <frameset rows="81,*,12%">
    <frame name="intestazione" src="1.html" scrolling="no">
    <frame name="principale" src="2.html" scrolling="auto">
    <frame name="principale1" src="3.html" scrolling="no">
    <noframes>
    <body>


    La pagina corrente utilizza i frame. Questa caratteristica non è
    supportata dal browser in uso.</p>
    </body>
    </noframes>
    </frameset>
    </html>


    grazie mille

    vito

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.