Hi,
I need to access an .asp subroutine file from a subdomain.
i.e. the website is at www.domain.com and I want to access the same subroutines on the subdomain mobile.domain.c om.
The normal #include and #virtual don't seem to be working remotely.
I have also tried:
url = "http://<domain>/subroutines.asp "
set xmlhttp = CreateObject("M SXML2.ServerXML HTTP")
xmlhttp.open "GET", url, false
xmlhttp.send ""
Response.write xmlhttp.respons eText
set xmlhttp = nothing
and it doesn't error out, but the subroutines don't seem to be accessible.
Ideas? thanks.
I need to access an .asp subroutine file from a subdomain.
i.e. the website is at www.domain.com and I want to access the same subroutines on the subdomain mobile.domain.c om.
The normal #include and #virtual don't seem to be working remotely.
I have also tried:
url = "http://<domain>/subroutines.asp "
set xmlhttp = CreateObject("M SXML2.ServerXML HTTP")
xmlhttp.open "GET", url, false
xmlhttp.send ""
Response.write xmlhttp.respons eText
set xmlhttp = nothing
and it doesn't error out, but the subroutines don't seem to be accessible.
Ideas? thanks.
Comment