In Visual studio 2010 webservice (.asmx), i would like to call in ASYNC(another method) in the business layer in .asmx page. is there any way to call?
[WebMethod]
public WebResult xxx1(string a)
{ new BusinessTier().xxx2(data1); //replace this as ASYNC
}