I have a simple webservice in asp.net which determine if the input parameter is valid or not :

[WebMethod]
public bool IsValidNationalCode(string input)
{
    return input.IsNationalCode();
}

I call it from an aspx page by jquery ajax function :

 $('#txtNationalCode').focusout(function () {
      var webMethod = "../PMWebService.asmx/IsValidNationalCode";
      var param = $('#txtNationalCode').val();
      var parameters = "{input:" + param + "}";

      $.ajax({
          type: "POST",
          url: webMethod,
          data: parameters,
          contentType: "application/json; charset=utf-8",
          dataType: "json",
          success: function (msg) {
              if(msg.responseText == true)
                  $('#status').html("Valid");
              else {
                  $('#status').html("Invalid");
              }
          },
          error: function () {
              $('#status').html("error occured");
          }
     });
 });

But I don't know how to get the return value of webservice in order to show appropriate message . Here if(msg.responseText == true) doesn't work

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

Make the IsValidNationalCode method static and use this in javascript:

success: function (msg) {
    if (msg.d == true)
        $('#status').html("Valid");
    else {
        $('#status').html("Invalid");
    }
}

For "d" explanation follow this link: Never worry about ASP.NET AJAX’s .d again

link|improve this answer
Thanks , msg.d works if the return type would be html and not json . I turned returntype to 'html' and that worked by msg.d – Mostafa Oct 15 '11 at 11:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.