Click here to Skip to main content
15,897,291 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
How to bind a asp.net listview in javascript by calling function from code-behind(aspx.cs)?
Posted

1 solution

Your question is not clear to me...
looks like you want to databind a listview from javascript.

In that case put your listview inside an update panel and call
__doPostBack('<%=UpdatePanel.ClientID %>','');

in a javascript function. this will do a partial update, which will update your listview as well.
 
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