我有一个asp程序。例如,名称是abc.asp。
在abc.app中。我想显示其他网址页面,如页眉。
我知道可以使用iframe来显示
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td align="center" valign="top">
<iframe frameborder="0" src="http://mywebsite/header.html" scrolling="No" width="100%" height="120"></iframe>
</td>
</tr>
但它不显示页面内容。 iframe没有显示链接内容。
我尝试使用另一种方式代替此,
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<td align="center" valign="top">
<iframe frameborder="0" src="header.asp" scrolling="No" width="100%" height="120"></iframe>
</td>
</tr>
header.asp内容:
<%
Dim url,strArr,xmlhttp,lineno
url = "http://www.mywebsite/header.html"
set xmlhttp = CreateObject("MSXML2.ServerXMLHTTP")
xmlhttp.open "GET", url, false
xmlhttp.setRequestHeader "Content-Type", "application x-www-form-urlencoded"
xmlhttp.send()
Response.write xmlhttp.responseText
set xmlhttp = nothing
%>
但它没有显示任何内容......
如果我点击了网址http://www.mywebsite/header.html
。它可以显示头部内容。
所以有人可以帮我这个吗?似乎iframe
无效。