Click here to Skip to main content
15,881,898 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more: , +
hi!! i need a div tag which updates books from a database reguraly how can i achive this can i use update panel of AJAX and under that the DATALIST control where i have a view button which enables users to view the particular book....

also how can i add image control in datalist which uses it;s dource from database...

how can i achive these thing's... :)
Posted

1 solution

You add the image control just like any other control in your DataList. What is the problem you are having?

To refresh the UpdatePanel you need to trigger it in some way. Add a hidden button, either within the UpdatePanel or outside (and set the Triggers for the UpdatePanel). Use JavaScript, like setInterval, to automatically click the button.

JavaScript
window.setInterval(refresh, 500);
function refresh()
{
  $("#refresh button id").click();
}
 
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