如何使用 c# 在 ASP.net "Dynamic Data"中添加 Web方法


[WebMethod(EnableSession = true)]
public static string SaveFavourites(string id, bool check)
{
    //My Code here
}

这个方法在动态数据文件夹(DynamicData/custompages/Products)中。我只是触发ajax调用这个方法。

不幸的是它不起作用。它返回"404 Not found"

我的ajax CALL。

$.ajax(
        {
            type: "POST",
            url: "List.aspx/SaveFavourites",
            contentType: "application/json; charset=utf-8",
            dataType: "json",
            async: true,
            data: { "id": productID, "chkboxValue": chkboxValue },
            success: function (result) {
                alert(result);
            }
        });

请尽早帮助。

似乎你把不正确的url在jquery ajax调用。

是你的页面,你已经写了jquery ajax调用,是在DynamicData/custompages/Products?如果是,那么你的url是正确的,否则你必须把正确的url。

相关内容

  • 没有找到相关文章

最新更新