comment rediriger vers la page externe dans .net noyau
public ActionResult YourAction()
{
// ...
return Redirect("http://www.example.com");
}
Dangerous Duck
public ActionResult YourAction()
{
// ...
return Redirect("http://www.example.com");
}