tags:

views:

123

answers:

1

I want to call a aspx page method asynchronously using JQuery

+1  A: 

You can use AJAX in jQuery to call a page method without too much trouble. Though I guess it depends on what you're trying to do. Sometimes it's better to contain your asynchronous methods inside a web service or web handler instead of the page.

I've posted on how to do this here. But it's not an example on how to do it with a page method, though the process is very similar.

BTW, a quick web search will turn up MANY results on what you're trying to do.

This example is very good.

Odd