如何在Web.config中嵌入文件?
我知道这听起来很疯狂但是...
有没有办法在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论