What is the best practice to support data for asp.net 2.0-3.5 ajax web application? I don’t want to use update panels, just plain text data (JSON). Should I use web services? Or is there another way.
What is the best practice to support data for asp.net 2.0-3.5 ajax web application?
Share
Errrr… Use an .aspx page ? What are handlers for ?
You just have to create a generic base handler that will take care of json (de)serialization (e.g. using Json.net) and then implement handlers for your ajax calls.
This is just an example, it’s up to you to decide want you need in your base handler.