Originariamente inviato da socrates1984
quando visualizzo la pagina dove sta l'iframe mi visualizza il codice che sta dentro il file asp
io ho il file aspx così?
<%@ Page Language="VB" ContentType="text/html" ResponseEncoding="UTF-8" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Documento senza titolo</title>
</head>
Set http = Server.CreateObject("msxml2.ServerXMLHTTP")
http.Open "POST", "http://www.stampa24ore.it/default.aspx"
postdata = "ctl00$cph1$Login1$UserName=USERNAME&ctl00$cph1$Lo gin1$Password=PASSWORD"
http.Send postdata
Response.Write(http.ResponseText)
</html>