有没有办法使用 asp 变量在 html 中包含文件?

发布于 2024-11-05 09:42:47 字数 184 浏览 0 评论 0 原文

我想在 html 中包含一个文件,但我想使用 asp 向它传递一个变量(即)

<% Dim s = "file.html %>
<!-- #include file="<% s %>"-->

这似乎不起作用,有没有办法解决这个问题以使上面的工作正常?

I want to include a file in html but I want to pass it a variable using asp (i.e.)

<% Dim s = "file.html %>
<!-- #include file="<% s %>"-->

That doesn't seem to work, is there a way around this to get the above to work?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

美煞众生 2024-11-12 09:42:47

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 <%=%>.

微暖i 2024-11-12 09:42:47

这样的事情对你有用吗?

<% if condition Then %>
<!--#include file="File1.htm"-->
<% elseif condition Then %>
<!--#include file="File2.htm"-->
<% end if %>

Would something like this work for you?

<% if condition Then %>
<!--#include file="File1.htm"-->
<% elseif condition Then %>
<!--#include file="File2.htm"-->
<% end if %>
忘羡 2024-11-12 09:42:47

这又如何呢?

<% Server.Execute "" & s & ".html" %>

What About This ?

<% Server.Execute "" & s & ".html" %>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文