I'm calling a webmethod from jquery/ajax. Sometimes my webmethod gets called, other times it doesn't. I'm passing the same arguments every time (the digit 1 and a short string of text). I've also created handlers to catch error and show codes when the ajax call is complete. Even when it doesn't call my webmethod, the status is "success." Any ideas?
The jquery:
var txt = $(ta).val();
$.ajax({
type: 'POST',
url: 'Default.aspx/AddThread',
contentType: 'application/json; charset=utf-8',
data: JSON.stringify({ forumId: id, comment: txt }),
dataType: 'json',
error: function(jqXHR, textStatus, errorThrown) {
alert("status: " + textStatus);
alert("errorThrown: " + errorThrown);
},
complete: function (jqXHR, textStatus) {
alert("status: " + textStatus);
}
});
The C#:
[WebMethod]
public static void AddThread(int forumId, string comment)
{
DataAccess.AddNewThread(forumId, comment);
}