ASP.NET PageMethod failed. How to know why?

johnsonjoli

New Member
When I try to access a PageMethod within javascript code it always is unsuccessfull. I use get_message() in onfailed method but no relevant informations is displayed. I'd like to get what's the actual problem. I have a jquery popup with two buttons. When Guardar button is pressed I need that the pagemethod "GuardaComentario" (SaveComment) is executed. This is my code:\[code\]$(document).ready(function () {// Dialogo $('#dialog').dialog({ autoOpen: false, resizable: false, modal: true, width: 450, buttons: { "Guardar": function () { $(this).dialog("close"); // Llamada ajax para guardar el comentario PageMethods.GuardaComentario(onSucceed, onFailed); }, "Cancelar": function () { $(this).dialog("close"); } }});// Dialogo Link$('#dialog_link').click(function () { $('#dialog').dialog('open'); return false;});\[/code\]});\[code\]function onSucceed(res, destCtrl) { alert("OK"); }function onFailed(res, destCtrl) { alert(res.get_message()); }\[/code\]Thank you!!
 
Back
Top