如何在Web.config中嵌入文件?

发布于 2024-12-01 23:40:55 字数 733 浏览 0 评论 0原文

我知道这听起来很疯狂但是...

有没有办法在 web.config 中嵌入文件???

像这样的东西

 <configuration>
    <system.webServer>
        <handlers>
            <add name="test" path="test.o" verb="*" modules="testmodule"
                embeddedFile="<![CDATA[<html><head><title>Test</title></head>
                <body><h1>I'm insane</h1></body></html>]]>" />
        </handlers>
    </system.webServer>
</configuration>

(我知道embeddedFile不存在,也不是使用CDATA的正确方法。它只是表达我想要的东西的一种方式)

基本上我想在IIS(不是ASP.NET)中创建一个单一文件网站自定义模块

/test.o 收到请求时,嵌入文件应发送到 testmodule。

有什么办法可以完成这个或者我只是疯了?

I know this sounds insane but...

Is there a way to embed files in the web.config???

Something like this

 <configuration>
    <system.webServer>
        <handlers>
            <add name="test" path="test.o" verb="*" modules="testmodule"
                embeddedFile="<![CDATA[<html><head><title>Test</title></head>
                <body><h1>I'm insane</h1></body></html>]]>" />
        </handlers>
    </system.webServer>
</configuration>

(I know embeddedFile doesn't exist nor it is the correct way to use CDATA. It is just a way to express what I want)

Basically I want to create a single file website in IIS (not ASP.NET) with custom Modules

When /test.o gets requested the embedded file should be sent to testmodule.

Is there any way to acomplish this or have I just gone mad?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文