Server.从 WebForms ashx 处理程序传输到 MVC 3

发布于 2024-10-18 10:51:17 字数 126 浏览 6 评论 0原文

我正在尝试执行从 ASP.NET ashx 处理程序到 ASP.NET MVC 3 页面的 Server.Transfer。

我不想使用 Server.Redirect 因为我不想更改 URL。

这可能吗?

I'm trying to do a Server.Transfer from an ASP.NET ashx handler to a ASP.NET MVC 3 page.

I don't want to use Server.Redirect because I do not want the URL to change.

Is this possible?

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

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

发布评论

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

评论(1

灼疼热情 2024-10-25 10:51:17

您可以在通用 HTTP 处理程序中尝试以下操作:

public void ProcessRequest(HttpContext context)
{
    var routeData = new RouteData();
    routeData.Values["controller"] = "Home";
    routeData.Values["action"] = "Index";
    IController controller = new HomeController();
    controller.Execute(new RequestContext(new HttpContextWrapper(context), routeData));
}

显然,只有当通用 HTTP 处理程序是 ASP.NET MVC 应用程序的一部分时,这才有效。

如果不是同一个应用程序,则 HTTP 重定向是您唯一的选择。

You may try the following in your generic HTTP handler:

public void ProcessRequest(HttpContext context)
{
    var routeData = new RouteData();
    routeData.Values["controller"] = "Home";
    routeData.Values["action"] = "Index";
    IController controller = new HomeController();
    controller.Execute(new RequestContext(new HttpContextWrapper(context), routeData));
}

Obviously this would only work if the Generic HTTP handler is part of the ASP.NET MVC application.

If it is not the same application an HTTP redirect is your only bet.

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