[WebMethod]
    [ScriptMethod]
 static public bool TypingStatus(string _userID, bool _typing)
    {
return false;
    }
用jquery的ajax调用上面这个webservice,没有成功过,到底怎么写?
比如:
    $.ajax({  
                url: "WebService.asmx/SendMessage",  
                type: "POST",  
                dataType: "json",  
                contentType: "application/json",
                data: "{_msg:$('#txtMsg').val(),_userID:$userid.val()}",   
                success:function(json){alert(json)},
                error: function(x, e) {  
                    alert(x.responseText);  
                }
            });