IIS 服务器端包含不处理 ColdFusion

发布于 2024-08-21 12:09:30 字数 298 浏览 6 评论 0原文

如何使用 IIS 中的服务器端包含模块来包含和处理 .htm 文件中的 ColdFusion 文件?我目前正在我的 html 文件中执行类似的操作:

<!--#include virtual="navmenu.cfm"-->

这包括 navmenu 文件的原始内容。我需要它来执行 ColdFusion 代码并返回该过程的输出,而不是包含原始 ColdFusion 代码。

同样的语法在 Apache 中可以正常工作。

How can I use the Server Side Includes module in IIS to include and process a ColdFusion file from a .htm file? I'm currently doing something like this in my html file:

<!--#include virtual="navmenu.cfm"-->

This includes the raw contents of the navmenu file. I need it to execute the ColdFusion code and return the output of that process rather than including the raw ColdFusion code.

This same syntax works properly in Apache.

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

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

发布评论

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

评论(3

沙沙粒小 2024-08-28 12:09:30

您是否只是想避免 URL 中的 CFM 扩展名?

您不能使用 SSI 将 CFM 文件包含到静态 HTM 文件中。您可以配置 IIS 将 HTM 文件发送到 CF 服务器进行解析。这将允许您在任何 HTM 文件中使用 CFINCLUDE。

或者,您可以使用 HTM 文件中的 ajax 并将解析后的 CFM 内容加载到 DIV 中。

Are you just trying to avoid the CFM extension in the URL?

You can't use SSI to include a CFM files into a static HTM file. You can configure IIS to send HTM files to the CF server to be parsed. This would allow you to use CFINCLUDE inside any HTM file.

Alternately, you can use ajax from your HTM file and load the parsed CFM content into a DIV.

み零 2024-08-28 12:09:30

如果您无法使首页看起来像一个 cfm,您是否考虑过使用 URL重写 IIS 模块?这样,您就可以使用一些显式的 htm 到 cfm 重写规则来制作某些文件 cfms,但不处理所有其他文件。除此之外,我认为可能没有一个优雅的答案,因为您正在混合静态和动态内容。

关于您关于 ajax 的评论 - 就我个人而言,我没有发现使用 ajax 有什么乏味的地方,但是 jquery 又把您宠坏了...

 <div id='menuhere'></div>

 $.get('navmenu.cfm', function(data) {$('.menuhere').html(data); });

完成与 SSI plus 相同的事情(假设 jQuery 被缓存),您可以更快地启动主内容页面加载。

If you can't make the top page appear to be a cfm to the outside have you thought about using the URL Rewrite Module for IIS? That way you could just make certain files cfms with some explicit htm to cfm rewrite rules but leave all others unprocessed. Beyond that I think there may not be an elegant answer since you are mixing static and dynamic content.

On your comment about ajax - personally I don't find anything tedious about using ajax but then again jquery spoils you...

 <div id='menuhere'></div>

 $.get('navmenu.cfm', function(data) {$('.menuhere').html(data); });

Accomplishes the same thing as the SSI plus (assuming jQuery is cached) you get faster main content page loads to boot.

笑红尘 2024-08-28 12:09:30

如果您使用的是 Coldfusion 页面,则为:

 <cfinclude template="navmenu.cfm">

如果您使用的是其他类型的页面,则需要将该内容放入 IFRAME 中

<iframe src="navmenu.cfm"></iframe>

问题是,如果您的服务器上有可用的 Coldfusion 技术,为什么不将该页面更改为 .cfm页面并使用上面的例子?

If you are using a Coldfusion page it is:

 <cfinclude template="navmenu.cfm">

If you are using another type of page you will need to put that content in an IFRAME

<iframe src="navmenu.cfm"></iframe>

The question is if you have Coldfusion technology available on the server, why not change that page to a .cfm page and use the above example?

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