本文介绍了远程访问.asp子例程的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述




我需要从子域访问.asp子例程文件。


即该网站位于我想在子域mobile.domain.com上访问相同的子程序。


正常的#include和#virtual似乎没有远程工作。 />

我也尝试过:


url =" http://< domain> /subroutines.asp"

set xmlhttp = CreateObject(" MSXML2.ServerXMLHTTP")

xmlhttp.open" GET",url,false

xmlhttp.send ""

Response.write xmlhttp.responseText

设置xmlhttp =没有


并且它没有错误,但是子程序似乎无法进入。


想法?谢谢。

解决方案




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.com.

The normal #include and #virtual don''t seem to be working remotely.

I have also tried:

url = "http://<domain>/subroutines.asp"
set xmlhttp = CreateObject("MSXML2.ServerXMLHTTP")
xmlhttp.open "GET", url, false
xmlhttp.send ""
Response.write xmlhttp.responseText
set xmlhttp = nothing

and it doesn''t error out, but the subroutines don''t seem to be accessible.

Ideas? thanks.

解决方案




这篇关于远程访问.asp子例程的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-22 17:02