Comment appeler la html.actionlink à l'aide de jquery

Je tiens à appeler l'actionlink à l'aide de jquery , voici le code:

  $("#paycheck").click(function () {

        if ($("#terms").attr("checked")) {

       //Call Html.ActionLink //This is where the html.ActionLink should be called to display another view


        } else {
            alert("Please agree to the terms and conditions.");
            return false;
        }
    });

<%: Html.ActionLink("Pay", "Index", "News") %>

OriginalL'auteur Mr A | 2011-07-14