purtroppo...
bisogna quindi utilizzare una funzione e settare tutti i singoli valori, un esempio:
codice:
Function HTMLDecode(sText)
Dim I
sText = Replace(sText, """, Chr(34))
sText = Replace(sText, "<" , Chr(60))
sText = Replace(sText, ">" , Chr(62))
sText = Replace(sText, "&" , Chr(38))
sText = Replace(sText, " ", Chr(32))
For I = 1 to 255
sText = Replace(sText, "&#" & I & ";", Chr(I))
Next
HTMLDecode = sText
End Function
al posto di Chr(nn) potrai usare i caratteri reali
in pratica, al momento della creazione del file xml, convertirai tutte le entità
altrimenti, se hai la gestione del server, puoi tentare con questa libreria:
https://www.example-code.com/asp/asp...ity_decode.asp