Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8139369
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T11:48:12+00:00 2026-06-06T11:48:12+00:00

Hi I am learning Ajax + MVC. I figured it would be nice for

  • 0

Hi I am learning Ajax + MVC. I figured it would be nice for the Controller to automatically handle ajax-aware Redirect(). After some digging, I found the code from this link. The code below is totally transparent to user, a user can just call Redirect(someUrlString) without needing to worry about difference between normal/ajax calls. Makes it very neat and cool.

public abstract class BaseController : System.Web.Mvc.Controller {
    //turn into ajax aware redirect
    protected override RedirectResult Redirect(string url) {
        return new AjaxAwareRedirectResult(url);
    }
}

and …

public class AjaxAwareRedirectResult : RedirectResult {
    public AjaxAwareRedirectResult(string url) : base(url) { }
    public override void ExecuteResult(ControllerContext context) {
        if (context.RequestContext.HttpContext.Request.IsAjaxRequest()) {
            string desturl = UrlHelper.GenerateContentUrl(Url, context.HttpContext);
            JavaScriptResult result = new JavaScriptResult() { 
                                      Script = "window.location='" + desturl + "';" };
            result.ExecuteResult(context);
        }
        else { base.ExecuteResult(context); }
    }
}

However, it is not complete. Challenge is:

RedirectToRouteResult RedirectToAction(ActionResult result)

is not there yet (Very handy especially for T4MVC).

As I am still new to MVC, I tried, but I am not knowledgeable enough to sufficiently figure out how to write this myself. Could any of you experts please help me with this? so I can learn it from your code? Thank you very much.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T11:48:14+00:00Added an answer on June 6, 2026 at 11:48 am

    Here is the quick simple solution I use for Ajax aware redirection in my project..

    1. Create a class AjaxRedirectAttribute for action.

          public class AjaxRedirectAttribute : ActionFilterAttribute
          {
              public override void OnActionExecuted(ActionExecutedContext filterContext)
              {
                  var result = filterContext.Result as RedirectResult;
                  if (result != null && filterContext.HttpContext.Request.IsAjaxRequest())
                  {
                      string destinationUrl = UrlHelper.GenerateContentUrl(result.Url, filterContext.HttpContext);
                      filterContext.Result = new JavaScriptResult()
                      {
                          Script = "window.location = '" + destinationUrl + "';"
                      };
                  }
              }
          }
      
    2. User this attribute as below to either redirect to other page or to return some result from action.

      [AjaxRedirect]
      public ActionResult MyAction(FormCollection frmcol)
      {
          // some code here
          if (UserId != 0)
          {
              return Redirect(this.Url.Action("Action", "Controller"));
          }
          else
          {
              return Content("Error message here.");
          }
      }
      
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When I was doing some self-learning on JQuery Ajax in Cakephp, I found out
I'm a .NET and MVC newbie, and learning it for the first time after
I am learning both AJAX and the Java Servlet API (well, Spring MVC, which
I've just starting learning jQuery and AJAX. I'm able to load a local page
I am learning to use xmlhttprequest/AJAX. In this sample code from w3schools, I do
1) A while ago I’ve started learning Asp.Net, but then I’ve heard that Ajax
Learning some VBA. So far, I've constructed this piece of code which should allow
I developed a basic web page in MVC 2 for learning the framework, and
I'm learning Ajax at the moment. The code below basically receives the echo from
I am learning AJAX in zend framework step by step. I use this question

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.