Access webmethod value using jquery
Hi ,my application contains a webmethod and that webmethod contains an integer value like this
[WebMethod]
public static Address[] ViewAddress(string id)
{
string msg;
string id1 = id.Trim();
BAL objBal = new BAL();
List<Address> details = new List<Address>();
DataSet ds = objBal.ViewAddress(id1, out msg);
int count = ds.Tables[0].Rows.Count;
}
my requirement is to retrieve the integer value count using jquery
How it is possible.
regards
Baiju