现在的位置: 首页 > 综合 > 正文

mvc3 app_code @helper @Ajax.ActionLink 失效的解决方法

2014年09月28日 ⁄ 综合 ⁄ 共 483字 ⁄ 字号 评论关闭


@*公共的razor帮助方法*@
@*郑凯 2014-3-28*@

@using System.Web.Mvc;

@helper AjaxActionLink_ToOtherSys(System.Web.Mvc.AjaxHelper helper,string dispName, int requestType)
    {
        //直接写@Ajax.ActionLink不行
        WebViewPage currentWebViewPage = CurrentPage as WebViewPage;
        System.Web.Mvc.Ajax.AjaxExtensions.ActionLink(currentWebViewPage.Ajax, dispName, "ToOtherSys", "Home", new { RequestType = requestType },
    new System.Web.Mvc.Ajax.AjaxOptions { HttpMethod = "Post", OnSuccess = "AlertMsg", OnFailure = "AlertError" });
}

抱歉!评论已关闭.