↧
Hiding routevalues when using RedirectToAction – ie don’t show GET params...
When we simply try and do a RedirectToAction and simply passes along a model with this then the model is serialized and sent as GET parameters to the next page. This happens because the...
View ArticleUsing RedirectToAction
The RedicrectToAction simply generates a HTTP 302 code witch tells the browser to get the next page. It is important to remember that when this is used inside a view then we should return...
View Article