Is it possible to return 307 Temporary Redirect from a controller to ASP.NET MVC?
I sometimes need to return POST values ββsubmitted from one form to another URI.
Using JavaScript to select on the client side (thereby bypassing this problem) is not an option.
GET redirection is not an option, as published data includes an 8k string, which may mean that the URI will be too long for some (many?) Browsers.
Is it possible?
Matt lacey
source share