ecanswers.org on ASP.NET MVC: Expression Based RedirectToAction Method
Pingback from ecanswers.orgMultiple Possible RedirectToAction | Zerby
View Articledharaa.biz on ASP.NET MVC: Expression Based RedirectToAction Method
Pingback from dharaa.biz.NET MVC 3: How to hide parameters in a RedirectToAction GET Action | Dharaa
View ArticleJon Kruger on ASP.NET MVC: Expression Based RedirectToAction Method
Funny, I wrote almost the exact some code today in my project. Glad to see that someone else thought the same way.
View Articlejason.whitehorn.ws on ASP.NET MVC: Expression Based RedirectToAction Method
Pingback from jason.whitehorn.wsJason Whitehorn - ASP.NET MVC - Decoupling RedirectToAction
View ArticleDamien on ASP.NET MVC: Expression Based RedirectToAction Method
Hi Matt,Thanks for this code. It's exactly what I was looking for. I fixed a small bug that occured when I was redirecting from controller A to controller B and took the liberty to merge you class with...
View Articlematthaw on ASP.NET MVC: Expression Based RedirectToAction Method
@bobo - thanks, link is fixed.
View Articlebobo on ASP.NET MVC: Expression Based RedirectToAction Method
using my powers of deduction the correct url should be www.eworldui.net/.../...rectToActionExtensions.zip
View Articlebobo on ASP.NET MVC: Expression Based RedirectToAction Method
your download url is broken
View Articlematthaw on ASP.NET MVC: Expression Based RedirectToAction Method
It's quite possible that it didn't have enough information to match the route, copy down the source from CodePlex and debug in to see what's happening. I couldn't tell you why.
View ArticleHarry on ASP.NET MVC: Expression Based RedirectToAction Method
@Matt - The action filter redirected to a virtual path, this is why I needed the method. I agree your approach is better as I only need to redirect, not get an actual virtual path, I was just curious...
View Articlematthaw on ASP.NET MVC: Expression Based RedirectToAction Method
@Harry - The reason I took this approach was to extend what was already there for the April bits of MVC for RedirectToAction. A action filter attribute, while could be used to do this, doesn't make any...
View ArticleHarry on ASP.NET MVC: Expression Based RedirectToAction Method
Is there any reason you need these methods to be extensions on the controller? I removed the controller parameter in the methods so I could use your code to redirect from an ActionFilterAttribute,...
View Articleweblogs.asp.net on ASP.NET MVC: Expression Based RedirectToAction Method
Pingback from weblogs.asp.netASP.NET MVC: Expression Based RedirectToAction Method - eWorld.UI - Matt Hawley
View ArticleHarry on ASP.NET MVC: Expression Based RedirectToAction Method
Legend, I had something similar, extending the RequestContext and returning: VirtualPathData vpd = req.RouteData.Route.GetVirtualPath(req, values); return (vpd == null) ? null : vpd.VirtualPath; Much...
View Article