Click here to Skip to main content
16,013,338 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
i have different images placed into Image folder of root directory website,
i need to slide these images in a web page but dont have idea. Need your help in this project.
Please provide me code and details.
Thanks in advance to you all.
Posted

Take a reference of this

[Link]


Ravi Halvadiya

www.InsightSoftech.com[^]
 
Share this answer
 
Hi
as a initiative code you can use a timer and change the url of images

C#
int z = 1;
protected void Timer1_Tick(object sender, EventArgs e)

        {
             z++;
            if (z==1)
            Image1.ImageUrl = "1.PNG";
            if (z==2)
            Image1.ImageUrl = "2.PNG";
            ...
        }
 
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