ASP.NET MVC 控制器操作是否比 HttpHandler 更快/更高效?

发布于 2024-12-05 20:38:00 字数 310 浏览 0 评论 0原文

我正在尝试创建一个简单的轻量级服务器端重定向,它检查客户端的用户代理并重定向到给定浏览器的网站。例如:

if(Request.UserAgent.contains("Firefox") { //redirect to www.yahoo.com }
else if(Request.UserAgent.contains("Safari") { //redirect to www.google.com }
else { // redirect to www.msn.com }

使用 ASP.NET 实现此目的最高效/最高效的方法是什么?

I'm trying to create a simple lightweight server side redirect which inspects the client's User-Agent and redirects to a website for a given browser. For example:

if(Request.UserAgent.contains("Firefox") { //redirect to www.yahoo.com }
else if(Request.UserAgent.contains("Safari") { //redirect to www.google.com }
else { // redirect to www.msn.com }

What would be the most performant/efficient way of accomplishing this using asp.net?

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

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

发布评论

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

评论(1

2024-12-12 20:38:00

不会。控制器在幕后实现 IHttpHandler 并使用反射来执行操作方法。

No. Controllers implement IHttpHandler behind the scenes and use reflection to execute action methods.

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