I am calling a web method in aspx page from my js file using AJAX. I have set the method to be [WebMethod] and the page inherits from System.Web.Ui.Page class. Still it does not
Decorate your CustomOrderService method with:
CustomOrderService
[ScriptMethod(ResponseFormat = ResponseFormat.Json)]
Also, change your return data to:
return new JavaScriptSerializer().Serialize(result);