Hey folks,

I am a junior web designer at my college and got an assignment on finding scripts that creates front page sideshow, like the ones you see on CNET.com, Yahoo Movies, and a bunch more. I am not sure if it's the right way to call "frontpage slideshow", but pictures are better than thousand words.

There is a modules for joomla and a number of other CMSs called Frontpageslideshow(http://www.frontpageslideshow.net), however, my school's website does not hang on any CMS and is ASP based. Everything has to be manually updated.

What would be the solution? Do you know any other "frontpage sludeshow" like scripts that can be easily and manually implemented?

Dani AI

Generated

An image carousel (a client-side JavaScript slider) is the right pattern for a front‑page slideshow. was on the right track. For — because the site is ASP-based and editors update content manually, have the server produce the slide data (HTML or a small JSON feed) and let a JS slider render it. That keeps content editable without changing templates or redeploying.

Two practical server patterns: server-rendered markup (Repeater/Razor) or a JSON endpoint the client fetches. Example ASP.NET MVC action that enumerates an images folder and returns a simple JSON array:

public ActionResult SlidesJson()
{
    var folder = Server.MapPath("~/slides");
    var files = Directory.GetFiles(folder)
        .Where(f => new[] { ".jpg", ".png", ".gif" }
                     .Contains(Path.GetExtension(f).ToLower()))
        .Select(f => new {
            src = Url.Content("~/slides/" + Path.GetFileName(f)),
            title = Path.GetFileNameWithoutExtension(f)
        });
    return Json(files, JsonRequestBehavior.AllowGet);
}

Workflow tips: keep images in a /slides folder plus a small index.json editors can update, or add a tiny admin page that uploads and sets Title/URL/Alt/Order into a Slides table. Always include alt text and textual captions in the DOM (helps SEO and screen readers). Optimize images (multiple sizes or srcset), use lazy loading, and set a fixed aspect-ratio container to avoid layout shifts and flicker. Test initialization timing so the slider waits for image dimensions when needed.

Pick a maintained frontend slider (examples: Swiper, Slick) and verify keyboard controls, pause/resume, and ARIA behavior (see the WAI-ARIA carousel guidance at WAI-ARIA carousel example). was correct that server code removes the need for manual template edits; ’s point about using ready-made scripts is practical — choose one that is mobile-friendly, accessible, and actively maintained.

Recommended Answers

All 5 Replies

Are you referring to an image carousel?

Are you referring to an image carousel?

But it's not like the ones on Cnet.com or movies.yahoo.com. Is image carousel modifiable to above stated websites?

Thanks!

Google (asp slideshow) is your friend
the actual getting off your proverbial to find the one that is appropriate of the 1.5 million responses I leave to you.
Nothing, ever, has to be manually updated, thats why server languages exist

Thanks!

Google (asp slideshow) is your friend
the actual getting off your proverbial to find the one that is appropriate of the 1.5 million responses I leave to you.
Nothing, ever, has to be manually updated, thats why server languages exist

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.