简体   繁体   English

无法使用用户控件调用网络方法

[英]Can't call the webmethod using user control

I'm creating a modal when I click I will pass the id and action to the serverside to save a logs. 当我单击时,我将创建一个模式,将ID和操作传递到服务器端以保存日志。

Here is my sample code but can't get it to work. 这是我的示例代码,但无法正常工作。 I'm using a usercontrol. 我正在使用一个用户控件。

$("a.modal_show2").click(function () {
    $(this).each(function () {
        if ($(this)) {
            var storecheckid = $(this).attr("id");
            $.ajax({
                type: "POST",
                url: "TalkTalk.aspx/saveLogs",
                data: {
                    action: 'video_tag',
                    clickedlinktag: storecheckid
                },                      
                dataType: "text",
                success: function (response) {
                    console.log(response);
                }
            });
        }
    });
});
[System.Web.Services.WebMethod]
public static string saveLogs(string action, string clickedlinktag)
{
    DataHelper.InsertLogs("TalkTalk", Convert.ToInt16(clickedlinktag), Convert.ToInt16(TwwId));
    return clickedlinktag;
}

Thanks 谢谢

data: JSON.stringify({ action: 'video_tag', clickedlinktag: storecheckid })

// response is a wrapper for your data. your data is in `d`.
success: function (response) {
    console.log(response.d);
}

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM