- I have an asmx web service that is part of my ASP.Net web application. I would like to use event-based approach of calling this web service in an async manner. Is this possible and if so how? If this is not possible, what are the alternatives?
Also, can I call in an async manner a static PageMethod in an aspx page that is decorated with '[WebMethod]' attribute? An example of page method I have is:
[WebMethod] public static SupplierData GetAgeSummary(string supplierId) { return ABC.Data.SupplierData.GetAgeSummary(supplierId); }
By async I mean async in server-side and not on client-side.