我建议仅使用jQuery编写自己的AJAX调用。无论如何,它比MVC的助手更灵活
@Html.Actionlink("Share", "Share", new { }, new { id = "share" })然后一个功能
$("#share").click(function (e) { e.preventDefault(); //Show loading display here var form= $("#shareForm"); $.ajax({ url : '@Url.Action("Share")', data: form.serialize(), type: 'POST', success: function(data){ //Show popup $("#popup").html(data); } });});


