web-dev-qa-db-ja.com

global.asaxのApplication_BeginRequestからアクションにリダイレクトします

私のWebアプリケーションでは、glabal.asaxのURLを検証しています。 URLを検証し、必要に応じてアクションにリダイレクトする必要があります。 Application_BeginRequestを使用してリクエストイベントをキャッチしています。

  protected void Application_BeginRequest(object sender, EventArgs e)
    {
        // If the product is not registered then
        // redirect the user to product registraion page.
        if (Application[ApplicationVarInfo.ProductNotRegistered] != null)
        {
             //HOW TO REDIRECT TO ACTION (action=register,controller=product)
         }
     }

または、mvcでリクエストを取得しながら各URLを検証し、必要に応じてアクションにリダイレクトする他の方法があります

26
Null Pointer

リダイレクトには以下のコードを使用します

   Response.RedirectToRoute("Default");

「デフォルト」はルート名です。任意のアクションにリダイレクトする場合は、ルートを作成してそのルート名を使用するだけです。

24
Null Pointer

上記のすべては機能しません。メソッドApplication_BeginRequestを実行するループになります。

使用する必要があります

HttpContext.Current.RewritePath("Home/About");
25
Afazal

すでに述べた方法に加えて。別の方法は、エラーが発生し、ユーザーをログインページにリダイレクトする必要があるシナリオで使用したURLHelperを使用することです。

public void Application_PostAuthenticateRequest(object sender, EventArgs e){
    try{
         if(!Request.IsAuthenticated){
            throw  new InvalidCredentialException("The user is not authenticated.");
        }
    } catch(InvalidCredentialException e){
        var urlHelper = new UrlHelper(HttpContext.Current.Request.RequestContext);
        Response.Redirect(urlHelper.Action("Login", "Account"));
    }
}
11
Nelly Sattari

これを試して:

HttpContext.Current.Response.Redirect("...");
6
James Johnson

私はこのようにします:

        HttpContextWrapper contextWrapper = new HttpContextWrapper(this.Context);

        RouteData routeData = new RouteData();
        routeData.Values.Add("controller", "Home");
        routeData.Values.Add("action", "FirstVisit");

        IController controller = new HomeController();

        RequestContext requestContext = new RequestContext(contextWrapper, routeData);

        controller.Execute(requestContext);
        Response.End();

このようにして、着信要求コンテキストをラップし、クライアントをリダイレクトせずに別の場所にリダイレクトします。そのため、リダイレクトはglobal.asaxで別のBeginRequestをトリガーしません。

3
Tim Geerts
 Response.RedirectToRoute(
                                new RouteValueDictionary {
                                    { "Controller", "Home" },
                                    { "Action", "TimeoutRedirect" }}  );
0
evgnib

MVC 5に変換する必要がある古いWebフォームアプリケーションがあり、要件の1つは{old_form} .aspxリンクのサポートでした。 Global.asax Application_BeginRequestでは、古いページを処理して新しいページにリダイレクトし、リクエストの未加工URLの「.aspx」のホーム/デフォルトルートチェックへの望ましくないループを回避するために、switchステートメントを設定しました。

    protected void Application_BeginRequest(object sender, EventArgs e)
    {
        OldPageToNewPageRoutes();
    }

    /// <summary>
    /// Provide redirects to new view in case someone has outdated link to .aspx pages
    /// </summary>
    private void OldPageToNewPageRoutes()
    {
        // Ignore if not Web Form:
        if (!Request.RawUrl.ToLower().Contains(".aspx"))
            return;

        // Clean up any ending slasshes to get to the old web forms file name in switch's last index of "/":
        var removeTrailingSlash = VirtualPathUtility.RemoveTrailingSlash(Request.RawUrl);
        var sFullPath = !string.IsNullOrEmpty(removeTrailingSlash)
            ? removeTrailingSlash.ToLower()
            : Request.RawUrl.ToLower();
        var sSlashPath = sFullPath;

        switch (sSlashPath.Split(Convert.ToChar("/")).Last().ToLower())
        {
            case "default.aspx":
                Response.RedirectToRoute(
                    new RouteValueDictionary
                    {
                        {"Controller", "Home"},
                        {"Action", "Index"}
                    });
                break;
            default:
                // Redirect to 404:
                Response.RedirectToRoute(
                    new RouteValueDictionary
                    {
                        {"Controller", "Error"},
                        {"Action", "NotFound"}
                    });
                break;

        }
    }
0
J. Horn