有没有办法使用 asp 变量在 html 中包含文件?
我想在 html 中包含一个文件,但我想使用 asp 向它传递一个变量(即)
<% Dim s = "file.html %>
<!-- #include file="<% s %>"-->
这似乎不起作用,有没有办法解决这个问题以使上面的工作正常?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
IIS 服务器端包含不支持变量。
请参阅文档。
一种解决方法是将文件(使用
FileSystemObject
)读入变量,并使用<%=%>
将其直接输出到页面。IIS server side includes do not support variables.
See the documentation.
One workaround would be to read the file (using
FileSystemObject
) into a variable and outputting that directly to the page using<%=%>
.这样的事情对你有用吗?
Would something like this work for you?
这又如何呢?
What About This ?