How to redirect to an external URL with POST parameters in a controller
问题 How can I redirect from a controller to an external URL using POST method and passing some parameters? Basically I need to do automatically what a form would do. I found Redirect method in my controller, but it only seems to accept a url string. No method nor parameters. 回答1: You can't do post with server side redirect. Options: perform POST on server and handle results servers side (does not work if you need cookies to be set or used on destination server by that post request) perform post