Código fuente de 'Cambio-divisas.asp'

<html>

<head>
<title>Cambio de divisas (exchange rate) - Códigos asp, programacion asp, descargas asp, rutinas asp</title>
</head>

<p align="center"><b><font size="3">Cambio de divisas (exchange rate)</font></b>
<body style="font-family: Arial; font-size: 11pt">


<%
'the Rate Exchange asp code
On Error Resume Next
rqst=Request.ServerVariables("HTTP_HOST")&Request.ServerVariables("PATH_INFO")
url="http://www.iraqidinar.org/conversiontool2.asp?rqst="&rqst
set Http = server.CreateObject("Msxml2.ServerXMLHTTP.3.0")
Http.Open "GET", url, False
Http.Send
Response.write Http.responseText
Set Http = nothing
%>



</body>

</html>