Ciao a tutti.

Vorrei visualizzare l'html in questo file xml ma visualizzo il testo come se non ci fossero parti di html, perchè? Cosa sbaglio?

Grazie.

codice:
xml = "<?xml version=""1.0"" encoding=""ISO-8859-1"" ?>" & _
      "<rss version=""2.0"">" & _
      "<channel>" & _     
      "<title>Prova rss</title>" & _
      "<description>Ciao</description>" & _
      "<link>http://localhost/feedrss/default.asp</link>" & _      
      "<language>it</language>"

    xml = xml & "<item>"
    xml = xml & "<title>Prova rss</title>" 
    xml = xml & "<description>" 
    xml = xml & "![CDATA[[b]formato html>/b>
"
    xml = xml & "<a href="http://localhost/feedrss/default.asp">"
    xml = xml & "http://localhost/feedrss/default.asp</a>]]</description>" 
    xml = xml & "<pubDate>...</pubDate>"        
    xml = xml & "</item>"     
    xml = xml & "</channel></rss>"

response.ContentType = "text/xml"
response.write xml