In ASP.Net MVC is it possible to use either Redirect
or RecirectToAction
to call for example a 303 error?
I am working my way through a book titled "ASP.NET MVC 1.0 Website Programming" and the source is making calls such as return this.Redirect(303, FormsAuthentication.DefaultUrl);
but this call only functions with an external library, I would like to have the same functionality sans the add-on if possible.