InnerHTML caricato dal server

di il
3 risposte

InnerHTML caricato dal server

Ciao a tutti,
ho un problema con innerHTML in quanto ho bisogno di importare dei dati dal server utilizzando questo comando.
Il mio codice dovrebbe essere del tipo:
<html>
<head>
<script>
function update(obj) {
obj.innerHTML= "Nuovo testo";
}
</script>
</head>
<body>
<table>
<tr>
<td>
<div onClick="update(this)">testo orignale</div>
</td>
</tr>
</table>
</body>
</html>

Al posto della stringa "Nuovo testo" vorrei caricare dei dati da un webserver o in formato html o testo o servlet, ma non so come farli caricare.
Qualcuno può aiutarmi ???

Grazie,
Ciao

3 Risposte

  • Re: InnerHTML caricato dal server

    Ciao
    <%
    ' crei il tuo testo
    var testo
    testo = "ciao"
    %>

    <html>
    <head>
    <script>
    function update(obj) {
    obj.innerHTML= "<%=testo%>";
    }
    </script>
    </head>
    <body>
    <table>
    <tr>
    <td>
    <div onClick="update(this)">testo orignale</div>
    </td>
    </tr>
    </table>
    </body>
    </html>

    Utente guest
  • Re: InnerHTML caricato dal server

    Si, ma io vorrei fare una richiesta del tipo :
    http://myServe..... .

    tipo:

    String testo = new String();
    testo.src="http://myServe....";

    come fare ????
  • Re: InnerHTML caricato dal server

    >String testo = new String();
    >testo.src="http://myServe....";
    bah comodo così....forse con .NET si potrà fare... <img src=imgfaccinacool.gif border=0 align=middle>
    per adesso riprendi l'esempio di guest
    e dove dice:
    >> <%
    >> ' crei il tuo testo
    >> var testo
    >> testo = "ciao"
    >> %>

    sostituisci al test=ciao il risultato dell'apertura del file richiesto
    Con FSO è abbastanza facile!...e poi al limite trovi tanti script per il download e upload che si basano sullo stesso principio!

    ciauz!
Devi accedere o registrarti per scrivere nel forum
3 risposte