Click here to Skip to main content
16,019,435 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi


I want bind the data into the gridview using normal ajax. That in the sense without using dot net ajax controls, i want to bind data into the gridview. Kindly help me.


Thanks.
Posted
Comments
[no name] 26-Feb-13 10:18am    
what do you mean by normal ajax?
ksbalamurali 27-Feb-13 3:27am    
i mean that using ajax technique without using Dot net ajax controls like script manager, update pannel.

1 solution

Following article demonstrates one of the way to fetch data from server side and show in grid: ClientCallback custom control for web applications[^]

Above article uses Callback (another option to AJAX). If you need to use AJAX, logic remains the same just the way to call server side for data changes.
JavaScript
document.getElementById("gvTest").outerHTML = responseText;   
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900