<a href="http://www.google.com">Google</a>
Html.ActionLink( "Google", // <-- LInk Text "MyAction", // <-- ActionMethod "MyController" // <-- Controller Name. )
public ActionResult MyController(){ // do your logging here return Redirect("http//www.google.com"); }
Login to post response