Asp.NET MVC 应用程序的 HttpHandler

发布于 2024-09-17 23:30:01 字数 331 浏览 5 评论 0原文

对于一般的 ASP.NET WebForms 应用程序,网页派生自 Page 类,该类实现了 IHttpHandler,用于处理实际的 Web 请求。

在 ASP.NET MVC 中,网页基类是 System.Web.Mvc.ViewPage,它也派生自 Page 类,后者又实现 IHttpHandler。

但在 ASP.NET MVC Razor 中,“cshtml”文件派生自 System.Web.Mvc.WebViewPage,它实际上没有实现 IHttpHandler。

根据 IIS 架构,为了处理请求,类必须实现 IHttpHandler,但 Razor 视图引擎并非如此。怎么可能?

For general ASP.NET WebForms applications, the web page derives from Page class which implements IHttpHandler that servers actual web request.

In ASP.NET MVC the webpage base class is System.Web.Mvc.ViewPage that also derives from Page class which in turn implements IHttpHandler.

But in the ASP.NET MVC Razor, the "cshtml" file derives from System.Web.Mvc.WebViewPage which actually does not implement IHttpHandler.

According to IIS architecture, in order to process a request, a class must implement IHttpHandler but this not the case with Razor view engine. How could it be possible?

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

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

发布评论

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

评论(1

萌酱 2024-09-24 23:30:01

请查看链接文本此备忘单。

ASP.NET MVC 不使用 WebForms IHttpHandler。它使用 MvcRouteHandler 中的 MvcHandler。

ViewPage 类在 ViewEngine 中调用。 MVC model2 架构风格不是页面控制器风格。

Look at link text this cheat sheet.

ASP.NET MVC not use WebForms IHttpHandler. It is using MvcHandler from MvcRouteHandler.

ViewPage class invoke in ViewEngine. MVC model2 architecture style is not Page Controller style.

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