views:

329

answers:

1

Using jQuery how do I bind data from a call to a asp.net ashx handler to a datalist?

+1  A: 

Simple answer : You don't. A datalist is server side and jQuery is all local.

Complex answer : You can use jQuery to allow the user to interact with controls and displays locally. You can also use jQuery to update your data store (SQL). Then you can reload the data into a server side varable from the data store inthe code behind.

Hogan