Click here to Skip to main content
15,903,388 members
Articles / Web Development / HTML
Article

An ASP.NET Slide Show

Rate me:
Please Sign up or sign in to vote.
3.43/5 (30 votes)
30 Mar 2006CPOL1 min read 352.9K   14K   78   73
A simple slide show using AJAX in ASP.NET.

Introduction

I had been looking for the source of a web-based slide show for my own use. The features I wanted in my slide show pages were that it should dynamically select a picture in the server to display, it should display some transition effects, and it should not cause page refreshing. But I couldn’t find one of this kind. So I decided to code it myself.

There is a lot of source code to make the transition effect using JavaScript. But to address the dynamic selection of the picture to display and to avoid the page from refreshing, I used AJAX. There are a lot of AJAX frameworks and tools out there to choose from. But for this simple task, I just used the ASP.NET2’s built-in AJAX supported class System.Web.UI.ICallbackEventHandler.

The included source code will demonstrate the use of this class, and also how to use JavaScript to make the request to get the next image file and apply the transition effects. One thing I need to mention is when applying transition effects, the next image has to be completely loaded before playing the effect, otherwise, the picture display will not be smooth and will be flickering. I also address this in my JavaScript code.

In fact, this is a part of my photo album web project. For the live demo of the slide show in my photo album, click here.

Using the code

To use the source, unzip the project files to a folder, load the Slideshow.sln in Visual Studio 2005, and run it.

Hope my post is useful to you. Enjoy!

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
Generalusing slideshow Pin
kurt11178023-May-06 3:24
kurt11178023-May-06 3:24 
GeneralRe: using slideshow Pin
Lang Deng23-May-06 8:45
Lang Deng23-May-06 8:45 
GeneralRe: using slideshow Pin
AntonioN20-Jul-06 1:48
AntonioN20-Jul-06 1:48 
GeneralRe: using slideshow Pin
Dan Satria24-Jul-06 10:24
Dan Satria24-Jul-06 10:24 
GeneralRe: using slideshow Pin
ASPX_noob10-Oct-06 16:08
ASPX_noob10-Oct-06 16:08 
GeneralRe: using slideshow Pin
Lang Deng10-Oct-06 19:02
Lang Deng10-Oct-06 19:02 
GeneralRe: using slideshow Pin
ASPX_noob10-Oct-06 20:07
ASPX_noob10-Oct-06 20:07 
GeneralRe: using slideshow Pin
Lang Deng10-Oct-06 21:28
Lang Deng10-Oct-06 21:28 
This is the problem confuses most of the people. In the WWW world, it doesn't use drive such as C: or D:. It always uses "http://www.servername.com/...". So you cannot pass a string contains physical path in your computer. It should be a virtual directory or an url, which can be accessed from other computers on the internet or intranet using http protocol. So the image file you set here should be on a virtual directory created in your web server. But if you run the source code in VS2005, there is no other virtual directory created in the build-in web serevr. The only virtual directory is the project's root directory, or in your case, the Z:\Projects. And any files under this virtual directory can be accessed from other computers on the network. But it has to be expressed as an url. For example, the url for an image file Z:\Projects\image1.jpg is "http://hostname:port/image1.jpg", but you better use the relative url, image1.jpg, if you don't know your hostname or port. And the url for an file Z:\Prijects\Album\photo1.jpg should be "Album/photo1.jpg", and so on. If you publish your project to you real web server, you still can use the relative urls. And you can also use the full urls like "http://www.abc.com/myalbum/hello.jpg", just the way you look at the images on the internet with your browser.

Hope this can help.


Lang Deng
GeneralRe: using slideshow Pin
ASPX_noob11-Oct-06 0:39
ASPX_noob11-Oct-06 0:39 
GeneralRe: using slideshow Pin
Lang Deng11-Oct-06 8:39
Lang Deng11-Oct-06 8:39 
QuestionRe: using slideshow [modified] Pin
ASPX_noob11-Oct-06 15:33
ASPX_noob11-Oct-06 15:33 
AnswerRe: using slideshow Pin
Lang Deng11-Oct-06 18:40
Lang Deng11-Oct-06 18:40 
GeneralRe: using slideshow Pin
ASPX_noob11-Oct-06 19:00
ASPX_noob11-Oct-06 19:00 
GeneralRe: using slideshow Pin
Lang Deng11-Oct-06 20:36
Lang Deng11-Oct-06 20:36 
GeneralRe: using slideshow Pin
ASPX_noob11-Oct-06 21:11
ASPX_noob11-Oct-06 21:11 
GeneralRe: using slideshow Pin
ASPX_noob12-Oct-06 21:28
ASPX_noob12-Oct-06 21:28 
GeneralRe: using slideshow Pin
yannlh17-Jan-07 16:47
yannlh17-Jan-07 16:47 
AnswerRe: using slideshow Pin
yannlh18-Jan-07 3:20
yannlh18-Jan-07 3:20 
AnswerRe: using slideshow Pin
yannlh18-Jan-07 4:02
yannlh18-Jan-07 4:02 
GeneralRe: using slideshow Pin
JPLavalley18-Sep-06 9:10
JPLavalley18-Sep-06 9:10 
Generala few comments on slide show example Pin
BillWoodruff4-Apr-06 1:11
professionalBillWoodruff4-Apr-06 1:11 
GeneralRe: a few comments on slide show example Pin
Lang Deng4-Apr-06 7:43
Lang Deng4-Apr-06 7:43 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.