Question: How does the asp.net marquee read pictures from the folder and how to implement it?
answer:
DirectoryInfo imagesfile = new DirectoryInfo(Server.MapPath("../images/"));
Repeater1.DataSource = imagesfile.GetFiles("*.jpg");
Repeater1.DataBind();
The important thing when quoting is the path. Write the path as your own.