当前位置: 代码迷 >> vbScript >> FSO写入文件后的有关问题
  详细解决方案

FSO写入文件后的有关问题

热度:8411   发布时间:2013-02-26 00:00:00.0
FSO写入文件后的问题
Function getTop()
str = "<html>"
str = str & "<body>\n"
str = str & "<table border=1>"
str = str & "<tr>"
str = str & "<td><a href='http://localhost/1/index.asp'>新闻首页</a></td>"
str = str & "<td><a href='/1/admin_index.asp'>管理员首页</a></td>"
str = str & "</tr>"
str = str & "</table>"
getTop = str
End Function

我用FSO创建了一个HTML文件。然后在里面写入了以上的代码,在文本文件下显示是对的。。但是在IE中打开后却连接不到页面,只有绝对路径就连接到,相对路径却不行。。。为什么?

------解决方案--------------------------------------------------------
<a href='/1/admin_index.asp'>管理员首页 </a>改成<a href='1/admin_index.asp'>管理员首页 </a>1前面不要那个/就好了
  相关解决方案