Click here to Skip to main content
15,921,905 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
In home page of http://www.c-sharpcorner.com there is a section

Yesterday's Leaders

here we can see name n photo changes after certain time

what is this control

how i can implement the same

thanks
Posted

why don't you post this on C-sharpcorner.com they might even know.
 
Share this answer
 
Hi,

you can develop that feature using ajax ad rotator control or

Jquery .

change div content in intervals with updated info

JavaScript
   function changeleaderimg()
{
   $.get("page.aspx?action=getleader",{},function(data){
   $("#resdiv").html("<span>img</span>");
   settimeout("changeleaderimg()",1000);
});
}


All the Best
 
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