我遇到了一个关键问题。有人可以提出建议吗?
我有一个.ascx
页面,上面有一个弹出窗口,其中有一个 aspnet 按钮,单击时必须重定向到另一个页面。
我按照以下步骤操作:
在打开颜色框后的 ascx 页面上,单击按钮会调用此函数。
$.ajax({ type: 'POST', url: "/HomeLoan/ProductConfirmationPop_SaveData.aspx/btnSaveData", contentType: 'application/json;charset=utf-8', dataType: 'json', success: function (response) { alert(response); }, error: function (XMLHttpRequest, textStatus, errorThrown) { alert(XMLHttpRequest + textStatus + errorThrown); } });
在 aspx 页面上
[WebMethod] public static void btnSaveData() { function sahil();//this function i want to call after this function is being called }
我收到 Json 解析错误。
我删除dataType:json
并让它返回一个html/text
然后它给我对象对象错误。