Ciao, ho utilizzato questo codice per caricare una pagina da spedire via email. Purtroppo le lettere accentate non si leggono... Come posso ovviare?
questo è il link
<%
Dim objXmlHttp
Dim strHTML
Set objXmlHttp = Server.CreateObject("Msxml2.ServerXMLHTTP")
objXmlHttp.open "GET", "http://www.aldebaranct.it/newsletter/mail.asp", False
objXmlHttp.send
Response.Write "Status: " & objXmlHttp.status & " " _
& objXmlHttp.statusText & "
"
strHTML = objXmlHttp.responseText
Set objXmlHttp = Nothing
%>
<h1>Here's The Page:</h1>
<table border="1">
<tr><td>
<%= strHTML %>
</td></tr>
</table>
<h1>Here's The Code:</h1>
<table border="1">
<tr><td>
<pre>
<%= Server.HTMLEncode(strHTML) %>
</pre>
</td></tr>
</table>

Rispondi quotando
.