- Home
- Categorie
- Coding e Sistemistica
- Altri linguaggi per il web
- codice html in script asp
-
codice html in script asp
Ciao a tutti ho questo script asp
"<h3>" & news_dat & "</h3> <p>" & news_title & "</p>" & _
dovrei inserire questo codice html tra i tag <h3>
<img src="immagini/tr_dx.gif" alt="tr" width="15" height="8" />
ho fatto delle prove ma niente
Come posso fare tenendo presente che la pagina deve essere validata?
-
Qundi se ho capito bene partendo da qui:
"<h3>" & news_dat & "</h3> <p>" & news_title & "</p>" & _arriveresti con questo codice:
"<h3> <img src=""immagini/tr_dx.gif"" alt=""tr"" width=""15"" height=""8"" />" & news_dat & "</h3> <p>" & news_title & "</p>" & _
attenzione che quando includi del codice html in una variabile asp, devi raddoppiare le virgolette ovvero se nel codice html è presente " deve diventare "". Era questo il tuo problema?
-
Si era quello il problema
Grazie