salve a tutti, ho questo codice ke richiama dei campi da un db tramite pagine ASP:

dati = new LoadVars();
dati.path = this;
dati.onLoad = function(success)
{
if(success){

this.path.text = this.text;
this.path.liveset = this.liveset;

} else {
// istruzioni per l'errore di caricamento
}
};

ASSetPropFlags(dati, ["onLoad", "path"], 8);
dati.load("data.asp");

nel db ho un campo link dove ce un inidirizzo web; come faccio a rendere linkabili i vari risultati del database

grazie?