asp.net mvc redirect to external url with parameters
Edit
redirect to external url with parameters in asp.net mvc from a mvc controller
Sample Code
public ActionResult Index()
{
return Redirect("http://google.com");
}