Pagina 1 di 2 1 2 ultimoultimo
Visualizzazione dei risultati da 1 a 10 su 13
  1. #1
    Utente di HTML.it L'avatar di acquila
    Registrato dal
    Jan 2001
    Messaggi
    1,292

    Errore: Impossibile visualiz XML.

    Ho creato una pagina in asp con documento Xhtml compatibile (Dreamw) e l'ho messa su server NT aruba, ma mi ha riportato questo messaggio di errore. Sapete come lo posso correggere e cos'è la riga 3 posizione 26?

    Impossibile visualizzare la pagina XML
    Impossibile visualizzare l'input XML tramite il foglio di stile XSL. Correggere l'errore, quindi fare clic su Aggiorna, oppure riprovare in un momento successivo.


    --------------------------------------------------------------------------------

    È previsto un valore letterale stringa, ma non sono state trovate virgolette aperte. Errore durante l'elaborazione della risorsa "http://www.xxxxx/xxxx.asp". Riga 3, posizione 26

    <font face="Arial" size=2>

  2. #2
    Utente di HTML.it L'avatar di Francis87
    Registrato dal
    Jun 2003
    Messaggi
    5,970
    hai una pagina xml con problemi...
    spero non sia quella con il tag FONT!!!!
    Heaven's closed. Hell sold out.

    Linux 2.6.26-2-amd64
    Debian squeeze

  3. #3
    Utente di HTML.it L'avatar di acquila
    Registrato dal
    Jan 2001
    Messaggi
    1,292
    ...cioè?

  4. #4
    Utente di HTML.it L'avatar di Francis87
    Registrato dal
    Jun 2003
    Messaggi
    5,970
    qual è il tuo documento xml?
    Heaven's closed. Hell sold out.

    Linux 2.6.26-2-amd64
    Debian squeeze

  5. #5
    Utente di HTML.it L'avatar di acquila
    Registrato dal
    Jan 2001
    Messaggi
    1,292
    Quello che so è questo, cioè l'intestazione della pagina:

    <?xml version="1.0" encoding="iso-8859-1"?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <%@LANGUAGE="VBSCRIPT"%>

  6. #6
    Utente di HTML.it L'avatar di Francis87
    Registrato dal
    Jun 2003
    Messaggi
    5,970
    ok, in una pagina xhtml NON puoi usare tag come quello <font>
    fai la validazione qua: http://validator.w3.org
    Heaven's closed. Hell sold out.

    Linux 2.6.26-2-amd64
    Debian squeeze

  7. #7
    Utente di HTML.it L'avatar di acquila
    Registrato dal
    Jan 2001
    Messaggi
    1,292
    ma come lo evito il problema del font ?
    Ho provato a validare e mi dice 3 errori:

    Line 40, column 48: value of attribute "method" cannot be "POST"; must be one of "get", "post" (explain...).
    <form name="register" id="register" method="POST" action="/registrazione.asp">
    ^
    Line 85, column 55: end tag for "input" omitted, but OMITTAG NO was specified
    <input type="hidden" name="MM_insert" value="register">
    ^
    Line 85, column 0: start tag was here (explain...).
    <input type="hidden" name="MM_insert" value="register">
    ^



    Posto anche il codice della pagina in questione indicando la riga 40 e 85 degli errori.

    <?xml version="1.0" encoding="iso-8859-1"?>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <%@LANGUAGE="VBSCRIPT"%>

    <%
    ' *** Edit Operations: declare variables

    Dim MM_editAction
    Dim MM_abortEdit
    Dim MM_editQuery
    Dim MM_editCmd

    Dim MM_editConnection
    Dim MM_editTable
    Dim MM_editRedirectUrl
    Dim MM_editColumn
    Dim MM_recordId

    Dim MM_fieldsStr
    Dim MM_columnsStr
    Dim MM_fields
    Dim MM_columns
    Dim MM_typeArray
    Dim MM_formVal
    Dim MM_delim
    Dim MM_altVal
    Dim MM_emptyVal
    Dim MM_i

    MM_editAction = CStr(Request.ServerVariables("SCRIPT_NAME"))
    If (Request.QueryString <> "") Then
    MM_editAction = MM_editAction & "?" & Request.QueryString
    End If

    ' boolean to abort record edit
    MM_abortEdit = false

    ' query string to execute
    MM_editQuery = ""
    %> LINEA 40
    <%
    ' *** Redirect if username exists
    MM_flag="MM_insert"
    If (CStr(Request(MM_flag)) <> "") Then
    MM_dupKeyRedirect="registr_fallita.asp"
    MM_rsKeyConnection=MM_registrazione_STRING
    MM_dupKeyUsernameValue = CStr(Request.Form("username"))
    MM_dupKeySQL="SELECT Username FROM User WHERE Username='" & MM_dupKeyUsernameValue & "'"
    MM_adodbRecordset="ADODB.Recordset"
    set MM_rsKey=Server.CreateObject(MM_adodbRecordset)
    MM_rsKey.ActiveConnection=MM_rsKeyConnection
    MM_rsKey.Source=MM_dupKeySQL
    MM_rsKey.CursorType=0
    MM_rsKey.CursorLocation=2
    MM_rsKey.LockType=3
    MM_rsKey.Open
    If Not MM_rsKey.EOF Or Not MM_rsKey.BOF Then
    ' the username was found - can not add the requested username
    MM_qsChar = "?"
    If (InStr(1,MM_dupKeyRedirect,"?") >= 1) Then MM_qsChar = "&"
    MM_dupKeyRedirect = MM_dupKeyRedirect & MM_qsChar & "requsername=" & MM_dupKeyUsernameValue
    Response.Redirect(MM_dupKeyRedirect)
    End If
    MM_rsKey.Close
    End If
    %>
    <%
    ' *** Insert Record: set variables

    If (CStr(Request("MM_insert")) = "register") Then

    MM_editConnection = MM_registrazione_STRING
    MM_editTable = "User"
    MM_editRedirectUrl = "login.asp"
    MM_fieldsStr = "nome|value|cognome|value|username|value|password| value|indirizzo|value|citta|value|telefono|value|e mail|value|userGroup|value"
    MM_columnsStr = "Nome|',none,''|Cognome|',none,''|Username|',none, ''|Password|',none,''|Indirizzo|',none,''|Citta|', none,''|Telefono|none,none,NULL|Email|',none,''|us erGroup|',none,''"

    ' create the MM_fields and MM_columns arrays
    MM_fields = Split(MM_fieldsStr, "|")
    MM_columns = Split(MM_columnsStr, "|")

    ' set the form values
    For MM_i = LBound(MM_fields) To UBound(MM_fields) Step 2
    MM_fields(MM_i+1) = CStr(Request.Form(MM_fields(MM_i)))
    Next LINEA 85

    ' append the query string to the redirect URL
    If (MM_editRedirectUrl <> "" And Request.QueryString <> "") Then
    If (InStr(1, MM_editRedirectUrl, "?", vbTextCompare) = 0 And Request.QueryString <> "") Then
    MM_editRedirectUrl = MM_editRedirectUrl & "?" & Request.QueryString
    Else
    MM_editRedirectUrl = MM_editRedirectUrl & "&" & Request.QueryString
    End If
    End If

    End If
    %>
    <%
    ' *** Insert Record: construct a sql insert statement and execute it

    Dim MM_tableValues
    Dim MM_dbValues

    If (CStr(Request("MM_insert")) <> "") Then

    ' create the sql insert statement
    MM_tableValues = ""
    MM_dbValues = ""
    For MM_i = LBound(MM_fields) To UBound(MM_fields) Step 2
    MM_formVal = MM_fields(MM_i+1)
    MM_typeArray = Split(MM_columns(MM_i+1),",")
    MM_delim = MM_typeArray(0)
    If (MM_delim = "none") Then MM_delim = ""
    MM_altVal = MM_typeArray(1)
    If (MM_altVal = "none") Then MM_altVal = ""
    MM_emptyVal = MM_typeArray(2)
    If (MM_emptyVal = "none") Then MM_emptyVal = ""
    If (MM_formVal = "") Then
    MM_formVal = MM_emptyVal
    Else
    If (MM_altVal <> "") Then
    MM_formVal = MM_altVal
    ElseIf (MM_delim = "'") Then ' escape quotes
    MM_formVal = "'" & Replace(MM_formVal,"'","''") & "'"
    Else
    MM_formVal = MM_delim + MM_formVal + MM_delim
    End If
    End If
    If (MM_i <> LBound(MM_fields)) Then
    MM_tableValues = MM_tableValues & ","
    MM_dbValues = MM_dbValues & ","
    End If
    MM_tableValues = MM_tableValues & MM_columns(MM_i)
    MM_dbValues = MM_dbValues & MM_formVal
    Next
    MM_editQuery = "insert into " & MM_editTable & " (" & MM_tableValues & ") values (" & MM_dbValues & ")"

    If (Not MM_abortEdit) Then
    ' execute the insert
    Set MM_editCmd = Server.CreateObject("ADODB.Command")
    MM_editCmd.ActiveConnection = MM_editConnection
    MM_editCmd.CommandText = MM_editQuery
    MM_editCmd.Execute
    MM_editCmd.ActiveConnection.Close

    If (MM_editRedirectUrl <> "") Then
    Response.Redirect(MM_editRedirectUrl)
    End If
    End If

    End If
    %>
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <title>Documento senza titolo</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <script language="JavaScript" type="text/JavaScript">
    <!--
    function MM_findObj(n, d) { //v4.01
    var p,i,x; if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
    if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
    for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
    if(!x && d.getElementById) x=d.getElementById(n); return x;
    }

    function MM_validateForm() { //v4.0
    var i,p,q,nm,test,num,min,max,errors='',args=MM_valida teForm.arguments;
    for (i=0; i<(args.length-2); i+=3) { test=args[i+2]; val=MM_findObj(args[i]);
    if (val) { nm=val.name; if ((val=val.value)!="") {
    if (test.indexOf('isEmail')!=-1) { p=val.indexOf('@');
    if (p<1 || p==(val.length-1)) errors+='- '+nm+' must contain an e-mail address.\n';
    } else if (test!='R') { num = parseFloat(val);
    if (isNaN(val)) errors+='- '+nm+' must contain a number.\n';
    if (test.indexOf('inRange') != -1) { p=test.indexOf(':');
    min=test.substring(8,p); max=test.substring(p+1);
    if (num<min || max<num) errors+='- '+nm+' must contain a number between '+min+' and '+max+'.\n';
    } } } else if (test.charAt(0) == 'R') errors += '- '+nm+' is required.\n'; }
    } if (errors) alert('The following error(s) occurred:\n'+errors);
    document.MM_returnValue = (errors == '');
    }
    //-->
    </script>
    </head>

    <body>
    <h1>Registrazione utenti.</h1>


    </p>
    <form name="register" id="register" method="POST" action="<%=MM_editAction%>">

    <table width="60%" border="0" cellspacing="0" cellpadding="3">

    <tr>
    <td>Nome:</td>
    <td colspan="2"><input name="nome" type="text" id="nome" /></td>
    </tr>
    <tr>
    <td>Cognome:</td>
    <td colspan="2"><input name="cognome" type="text" id="cognome" /></td>
    </tr>
    <tr>
    <td>Username:</td>
    <td colspan="2"><input name="username" type="text" id="username" /></td>
    </tr>
    <tr>
    <td>Password:</td>
    <td colspan="2"><input name="password" type="password" id="password" /></td>
    </tr>
    <tr>
    <td>Indirizzo:</td>
    <td colspan="2"><input name="indirizzo" type="text" id="indirizzo" size="55" /></td>
    </tr>
    <tr>
    <td>Citt&agrave;:</td>
    <td colspan="2"><input name="citta" type="text" id="citta" /></td>
    </tr>
    <tr>
    <td>Telefono:</td>
    <td colspan="2"><input name="telefono" type="text" id="telefono" /></td>
    </tr>
    <tr>
    <td>Email:</td>
    <td colspan="2"><input name="email" type="text" id="email" /></td>
    </tr>
    <tr>
    <td><div align="right">
    <input name="userGroup" type="hidden" id="userGroup" value="visitor" />
    </div></td>
    <td><input name="invia" type="submit" id="invia" onclick="MM_validateForm('nome','','R','cognome',' ','R','username','','R','indirizzo','','R','citta' ,'','R','telefono','','R','email','','RisEmail','p assword','','R');return document.MM_returnValue" value="Invia" /></td>
    <td><input name="reimposta" type="reset" id="reimposta" value="Reimposta" /></td>
    </tr>
    </table>

    <input type="hidden" name="MM_insert" value="register">
    </form>
    </body>
    </html>

  8. #8
    Utente di HTML.it
    Registrato dal
    Sep 2001
    Messaggi
    21,188
    La spiegazione dei tre errori e` semplice:

    1. In una pagina XHTML non puoi usare attributi maiuscoli: tutti sono minuscoli;

    2,3 manca la / alla fine del tag (prima della > mettici spazio slash)

    Il resto della pagina non lo ho controllato.
    Ti conviene pero` studiarti le modifiche da apportare ad una pagina HTML per farla diventare XHTML: mi pare che ci sia un tutorial su HTML.it e ci sono alcuni link interessanti fra i link utili.

    Ciao
    Michele
    Nuova politica di maggiore severita` sui titoli delle discussioni: (ri)leggete il regolamento
    No domande tecniche in messaggi privati

  9. #9
    Utente di HTML.it L'avatar di acquila
    Registrato dal
    Jan 2001
    Messaggi
    1,292
    Io comunque ho creato una pagina asp vbscript con il comando di Dreamweaver "rendi il documento xhtml compatibile".
    Pensavo che in automatico fosse corretta.

  10. #10
    Utente di HTML.it L'avatar di floyd46
    Registrato dal
    Feb 2002
    residenza
    Apulia
    Messaggi
    2,641

    Impossibile.................

    Ciao hai 1 pvt

    inoltre quel tipo di errore il Dreamweaver lo dà quando non riesce a "trovare" il percorso giusto del Database.

    Anche a me è successo a volte.

    Saluti

    -Floyd-
    "Le persone che realizzano layout con tabelle annidate, spacer gif o che ignorano l'accessibilità non possono più definirsi professionisti." Andy Clarke
    --------------------------------

    www.extrowebsite.com

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 © 2026 vBulletin Solutions, Inc. All rights reserved.