Image Rotation
Hi,
Following is summary of my complex problem :
On a web site after completing a test. The user gets his result.
The Result Looks like following on web page :
No.1 Career : Management
No.2 Career : Fitness
No.3 Career : Trainer
And the code-behind for this AFTER CALCULATION is :
Response.Write(careers(0) & "<br />")
Response.Write(careers(1) & "<br />")
Response.Write(careers(2) & "<br />")
So, what i have to do is : DISPLAY IMAGES one after another in a Banner, of the careers which is in the result.
for e.g : Image of Management, Image of fitness, Image of Trainer in the above case.
What is the code for this Image Rotation one after another(in total 3 images should rotate, but in some cases if Result shows only 2 Careers, then only 2 Images should rotate ).
Please note : The Result may change, as there are 19 CAREERS in total, So I have to DISPLAY IMAGES corresponding to the Result Careers.
Thank You for Help....!!
|