我正在asp.net中创建一个Web应用程序,我正在使用javascript进行某种程度的扩展,这里的问题来了,在一个场景中,我正在从$.Ajax
调用Web服务
并在执行如下所示的Web服务之后
[WebMethod]
public void GetCustomersByCountry(string country)
{
//here I want to hit a method which is located in aspx.cs page to bind my grid;
}
我如何执行位于aspx.cs页面中的方法以将网格与Web服务中的Web方法绑定起来