In ASP.NET MVC, RedirectToAction is a controller method that returns an HTTP 302 response to the browser, which causes the browser to make a GET request to the specified action.

learn more… | top users | synonyms

0
votes
0answers
8 views

MVC RedirectToRoute Throws an error No Matching Route FOund

Im Redirecting my action Using RedirectToRoute with parametes and i defined the route in global.asax return RedirectToRoute("RouteName", new { action = "Search", Id, Customer, ...
0
votes
1answer
17 views

If not redirected redirect to original page

i have two pages parameters.php targetparameters.php people can enter their parameters in the parameters.php and click submit. Which gets redirected to targetparameters.php. this page shows what ...
2
votes
2answers
78 views

Session ends randomly after redirect

I have a strange problem in ASP .NET MVC 4. In AccountController I am doing redirects on certain actions and put data into TempData (which is stored in Session) before that: [AllowAnonymous] public ...
0
votes
1answer
37 views

RedirecttoAction with error message

I have a link on a grid in my AdminUsers view grid.Column(header: "", format: (item) => (condition ? Html.ActionLink("Impersonate", "Impersonate", "Admin", new { id = item.username }, null) : ...
0
votes
1answer
117 views

RedirectToAction throws 400 error in IE10

I have an ASP.Net MVC3 site using RedirectToAction like so: return RedirectToAction("Index", interstitialController, new { userName = model.logInInfo.UserName, redirectString ...
3
votes
1answer
112 views

Can I avoid this permanent redirect to fix or add a slug?

I am writing a website in MVC 4, and would like to duplicate in part Stack Exchange's style for routing questions. For example: stackoverflow.com/questions/15191392 and ...
0
votes
4answers
145 views

MVC 3 Redirect not working

I have a small problem related to action redirecting. I want to prevent users from being able to access information concerning a specific area in the site using an override of the OnActionExecuting in ...
0
votes
1answer
174 views

Error loading page after redirect to an MVC3 action

Scenario: I have a view (let's call it Index.cshtml) that posts a form to a controller action (let's call it GetWorkList). GetWorkList runs and then returns a partial view WorkReport. After that the ...
0
votes
0answers
61 views

Why does RedirectToAction not show the new View in another Controller?

Although this question is showing up several times, I still cannot find the solution for my problem. would like to redirect from the HomeController to a new View in another Controller. Everything ...
1
vote
1answer
112 views

Redirect to same view

I am working on a ASP.NET MVC website and I am new to this. I have a controller with few actions. I want to use these actions through out my website. For example [HttpPost] public ActionResult ...
4
votes
3answers
236 views

Passing a model into RedirectToAction()

I'm curious how this works. In MVC you can call View() and pass a model as a parameter, but RedirectToAction (one of its incarnations at least) takes a 'routeValues' object, which appears to be the ...
0
votes
2answers
226 views

avoid sql inject by query string in asp.net

I programed an application with asp.net and use "respons.redirect" in some pages, like this: Response.Redirect(string.Format("~/*****/****.aspx?ID={0}", ID)); as user execute this cod he will ...
0
votes
2answers
68 views

Pass values to controller and come back to calling view?

I've got a button for which I dynamically create target URI with jquery. Controller action will do some update on database and I want it to display view that call it in the first place. This view can ...
0
votes
0answers
45 views

Asp mvc RedirectToAction with Date

When I use RedirectToAction in MVC, the date is being switched because MVC uses another culture. return RedirectToAction("Index", new viewmodel { FromDate = ...
0
votes
1answer
41 views

301 Redirect ALL none existing links

I have had a look around at other posts but since i'm not a .htaccess wizard i can't quite figure out how to change the code to fit my needs. Basically i have a holding page. page for a site i am ...
2
votes
1answer
211 views

Which redirection method to use for SEO in my Action Method using ASP.NET MVC? RedirectToAction or RedirectToActionPermanent?

I am creating a web site that will support multiple languages. I also wanted to localize URL so that it would work like this: www.domain.com/en/contact www.domain.com/de/kontakt To achieve that I ...
1
vote
2answers
610 views

setting query string in redirecttoaction in asp.net mvc

I have to do a redirecttoaction call in asp.net mvc view with varying params, extracted from the referrer page of the view (the status of a grid). I have (in an hidden field) the content of the query ...
0
votes
0answers
86 views

Strange behaviour in case of RedirectToAction

I have following flow in my web app which is an MVC app. Call MainIndex action of MainController which rendered MainView MainView will also load a ChildView ChildView will call its own action via ...
1
vote
1answer
349 views

PHP header redirect in jQuery Mobile

I'm working on a jquery mobile web app and do a sessioncheck with php on pages I need the user to be logged-in. If not, the user will be redirected to the ...
0
votes
1answer
125 views

Remove anchor from URL MVC3

So, I have a form on PageA that attaches an anchor so that the page jumps to errors shown on PageA. But, when there are no errors, I am trying to use return RedirectToAction("PageB", new { id = ID ...
0
votes
2answers
114 views

ruby - redirect_to(url, :myparam => 'abc')

I can't work this out. url = "www.mysite.com/?param1=abc" redirect_to(url, :param2 => 'xyz') ### Should this go to - www.mysite.com/?param1=abc&param2=xyz Or am I missing something? It ...
0
votes
3answers
653 views

RedirectToAction from different controller and with parameters/routevalues not working

I’m trying to call a action method from different controller but it´s not working. It simply skips the RedirectToAction here's my code: public ActionResult sendPolicy(TempPoliciesUpload TempPolicy) ...
0
votes
1answer
210 views

Creating a chart from model. (MS Chart Controls in asp.net mvc3)

I'm trying to create charts in a view , the content (name/ series/type etc) will all be determined by the controls a user selects in the view. As long as I load an already created chart all is fine, ...
0
votes
1answer
462 views

View doesn't refresh after RedirectToAction is done

Here is my problem: [HttpPost] public ActionResult AddData(CandidateViewModel viewModel) { var newCandidateId = 0; newCandidateId = this._serviceClient.AddCandidate(viewModel); ...
0
votes
1answer
39 views

Redirect temporarily

I have a MVC site that I want redirected temporarily all traffic there to another MVC site. How can I do it without using IIS Manager which does not allow me to connect to the remote IIS server. I ...
0
votes
3answers
1k views

Use RedirectToAction in Web API

I am using RedirectToAction in my ASP.Net WebAPI application and I tried the following one. return RedirectToAction("AuthenticateUser", "AuthenticationServiceWebApi", new RouteValueDictionary ...
0
votes
3answers
275 views

Losing Route data in RedirectToAction

hi i have a weird problem and here we go: i am redirecting using this command : return RedirectToAction("ViewMessage", "Account", new {id = model.MessageId}); but in ViewMessage action when i try ...
-1
votes
2answers
102 views

How can I return an object from a method executed with RedirectToAction?

I have a controller with Get, Save and Create actions. These actions take as a parameter an item type. This is just a string specifying what type of item we are processing. There is a child ...
0
votes
0answers
72 views

RedirectAction with Areas is not working

I have LogIn post method in MVC controller .In that return RedirectAction is not working properly.I dont know what i am missing.Here is the code [HttpPost] //[Compress] public ActionResult ...
2
votes
2answers
7k views

Redirect to Action in another controller

I have two controllers, both called AccountController. One of them, lets call it Controller A, is in an Area called Admin and the other, lets call it Controller B, is not in any Area (I guess that ...
0
votes
0answers
280 views

How to get the correct Different View on RedirectToAction using Jquery Post MVC 2 Asp.net C#

Okay, I have two view page in Total. I am using area in this project. In the first view page, I have View and Partial view which is working fine. From the first View Page, the user click the submit ...
1
vote
2answers
260 views

RedirectToAction with unknown number of URL variables

I'll preface this with, if you know of a better way to do what I am trying to do, please tell me. So, I have my login in my Layout (aka MasterPage) so that a user can login no matter what page they ...
0
votes
3answers
271 views

Redirect to the Caller Action in ASP.NET MVC3

Assume we have an action like: public ActionResult Display(long Id){ //Do something return RedirectToAction(//To the Caller) } So Display action called by some Views, like: Index View : ...
2
votes
2answers
187 views

In my asp.net mvc 2 application, why are parameters passed via RedirectToAction sometimes lost?

In my asp.net mvc 2 application, why are parameters passed via RedirectToAction sometimes lost? This perplexes me. Sometimes using RedirectToAction works, sometimes it doesn't. I haven't found any ...
2
votes
1answer
2k views

How to redirect to action of another controller of an referenced project

Hi i have a created an another project inside my application. Now i want to move to the action of the Controller in the new project from the action in my old project. I tried many things like: ...
0
votes
1answer
61 views

Base protocol (https://) for every render/redirect_to call

is there a way i can set up a base protocol to use render :action => "myaction" redirect_to :action => "myaction" instead of calling render :action => "myaction", :protocol => ...
3
votes
2answers
506 views

RedirectToAction inside a action method that creates a new object in the entity in MVC

I have a action method that is following: public ActionResult CreateNKITemplate(int id) { var goalcard = createNKIRep.GetGoalCardByID(id); ...
0
votes
1answer
179 views

TransferToAction?

RedirectoToAction is a client side operation. Not only is it voluntary, any data that is to be passed has to make a round trip, and is exposed in the query string. The latter somewhat goes against ...
0
votes
2answers
205 views

How do I redirect a user (who is already logged in) with the incorrect role to view a page?

I want to send users who have the incorrect role to another page, however when I use: return RedirectToAction("Index", "Home"); I get the error: Cannot implicitly convert type ...
1
vote
2answers
883 views

Should I be passing values through RedirectToAction or TempData?

I've seen some articles (even MSDN) suggest TempData for passing data between ActionMethods. But I've seen others here say that TempData should be avoided. What's the best practices way to approach ...
7
votes
3answers
2k views

Propagating QueryString parameter in RedirectToAction calls

I want to make sure that a particular parameter in the QueryString, in my case the request_id is propagated to the redirected action. Say for example, I have an Action First, [HttpPost] public ...
0
votes
1answer
465 views

Rails redirect_to not working, redirecting to show instead of custom action

So I have a ChatsController, and from my index action, I'm trying to redirect to a custom action, "decide": def index @chat = Chat.customfind(params[:search]) if(@chat.is_a?(Array)) ...
0
votes
1answer
187 views

RedirectToAction at runtime

I'm developing MVC3 project and have this situation. only at runtime. I'm using the default Account controller to login. if login succeed i need to redirect to another area just somethhing like this: ...
0
votes
1answer
139 views

Redirect happens before form data is processed

What i'm trying to do here is to sends an email to a salesperson notifying them that their client has viewed a google docs presentation. The query's Num=val is a serial number that I use to get the ...
2
votes
3answers
1k views

How to pass class via RedirectToAction

I have the following code: public ActionResult Index() { AdminPreRegUploadModel model = new AdminPreRegUploadModel() { SuccessCount = successAddedCount, ...
0
votes
1answer
290 views

strange behaviour of MVC RedirectToAction

I have the following UserController methods: public ActionResult DeleteThread(int RootMessageID) { _repository.DeleteMessageThread(RootMessageID); return ...
0
votes
1answer
660 views

mvc3 redirect from view and redirect from partial both cause http 500 error

When a users visits my home page and they click the log in button it brings up jquery ui dialog that contains a regular form. @using (Html.BeginForm("LogOn", "Account", FormMethod.Post, new { ...
1
vote
1answer
878 views

MVC3 - When using HttpPostedFileBase with large files, RedirectToAction is very slow

Okay, I have a situation that seems to make no sense. I have a controller thus: public ActionResult Index() { return View(_courseService.ListAllCourses()); } [HttpPost] public ActionResult ...
0
votes
1answer
233 views

How do I make a redirectAction when using REST Plugin (Struts 2)

Considering the typical case when, after creating, updating or deleting an element, you want to do a redirectAction to the "index" action (or whatever other action). ¿How do you make it if you are ...
0
votes
2answers
348 views

In MVC, why does the routeValues property in RedirectToAction() not accept my class as argument?

So here's the deal, i want to be able to export any Enumerable of items to excel: Here's an ActionMethod in some Area of my app that constructs an "ExportToExcel" model, then Redirects it to an ...

1 2 3