codice:
<%
url = "http://www.pippo.com/cartella/file.js"
set xmlhttp = server.createObject("Microsoft.XMLHTTP")
xmlhttp.open "GET", url, false
xmlhttp.send
iStatus = xmlhttp.status
if isNumeric(iStatus) then iStatus = cLng(iStatus)
if iStatus = 200 then
%>
<script type="text/javascript" scr="<%=url%>"></script>
<%
end if
set xmlhttp = nothing
%>