views:

61

answers:

1

Is there a way to call code behind function with Javascript that is in another aspx page's code behind?

A: 

You will need to expose the method as a WebMethod.

You could then call it using something like the jQuery.getJSON method.

David Neale