http 处理程序示例在 .net 4、VS2010 cassini 中不起作用

发布于 2024-11-06 13:31:18 字数 594 浏览 0 评论 0原文

我刚刚在一个新网站中尝试了这个简单的示例,以在 .net 4 中创建 http 处理程序:

http://msdn.microsoft.com/en-us/library/ms228090.aspx#Y700

它看起来很简单 - 我刚刚将 http 处理程序类复制到我的应用程序代码目录中 - 它只是响应.写出一些html。基本的东西。 web.config 条目甚至更简单:

<system.webServer>
<handlers>
  <add verb="*" path="*.sample"
    name="HelloWorldHandler"
    type="HelloWorldHandler"/>
</handlers>

正如文章所示,我尝试在浏览器中请求 test.sample 但收到 404 错误。如果我创建 ashx 文件而不是类文件/Web 配置方法,则相同的代码会像魅力一样工作。

I just tried this simple example in a new web site to create an http handler in .net 4:

http://msdn.microsoft.com/en-us/library/ms228090.aspx#Y700

It looks so simple - I just copied the http handler class into my app code directory - it simply response.writes out some html. Basic stuff. The web.config entry is even simpler:

<system.webServer>
<handlers>
  <add verb="*" path="*.sample"
    name="HelloWorldHandler"
    type="HelloWorldHandler"/>
</handlers>

As the article suggests, I've tried requesting test.sample in my browser but got a 404 error. The same code works like a charm if I create an ashx file instead of the class file/web config method.

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

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

发布评论

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

评论(1

菊凝晚露 2024-11-13 13:31:18

除了 system.webserver 之外,您还需要将处理程序放入 system.web 的 httphandler 部分(IIS7+ 需要此功能)

You need to put the handler in the httphandler portion of the system.web in addition to the system.webserver (Which is needed for IIS7+)

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