Click here to Skip to main content
15,887,283 members
Articles / General Programming / File
Tip/Trick

Add Images in Image Rotator with the Help of FileUpload Control

Rate me:
Please Sign up or sign in to vote.
5.00/5 (1 vote)
18 Oct 2013CPOL 10K   1  
How to add images in Image Rotator with the help of FileUpload control

This articles was originally at wiki.asp.net but has now been given a new home on CodeProject. Editing rights for this article has been set at Bronze or above, so please go in and edit and update this article to keep it fresh and relevant.

Introduction

In case of ImageRotator, we can use FileUpload control to upload my images.

Here I use it in a simple way.

Step 1

We use a image control (Image1), FileUpload control, button (Button1), HiddenField (for storing the file name) and a Save button to call the JavaScript function.

Step 2

On the click of Button1, we upload a file with the help of FileUpload1 and store the file name in HiddenField1 and show the image in the image control.

JavaScript
string filename = FileUpload1.PostedFile.FileName.ToString();
FileUpload1.SaveAs(Server.MapPath("~/") + filename);
Image1.ImageUrl = filename.ToString();
HiddenField1.Value = filename.ToString();

Step 3

On the click of Button2, we upload a file with the help of FileUpload2 and store the file name in HiddenField2 and show the image in the image control:

JavaScript
string filename = FileUpload2.PostedFile.FileName.ToString();
FileUpload2.SaveAs(Server.MapPath("~/") + filename);
Image1.ImageUrl = filename.ToString();
HiddenField2.Value = filename.ToString();

Step 4

On the click of Button3, we upload a file with the help of FileUpload3 and store the file name in HiddenField3 and show the image in the image control.

JavaScript
string filename = FileUpload3.PostedFile.FileName.ToString();
FileUpload3.SaveAs(Server.MapPath("~/") + filename);
Image1.ImageUrl = filename.ToString();
HiddenField3.Value = filename.ToString();

Suppose we add only three Images for ImageRotator.

Step 5

In the click of the Save Button (HTML control) we call the JavaScript function (show()) in the OnClick event.

JavaScript
<script language="javascript" type="text/javascript" >
    function show()
    {
        var a=document.getElementById('HiddenField1').value;
        document.getElementById('Image1').src=a;
        setTimeout("show2()",1000);
    }

    function show2()
    {
        var b=document.getElementById('HiddenField2').value;
        document.getElementById('Image1').src=b;
        setTimeout("show3()",1000);
    }
    
    function show3()
    {
        var b=document.getElementById('HiddenField3').value;
        document.getElementById('Image1').src=b;
        setTimeout("show()",1000);
    }
</script> 

License

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


Written By
United States United States
The ASP.NET Wiki was started by Scott Hanselman in February of 2008. The idea is that folks spend a lot of time trolling the blogs, googlinglive-searching for answers to common "How To" questions. There's piles of fantastic community-created and MSFT-created content out there, but if it's not found by a search engine and the right combination of keywords, it's often lost.

The ASP.NET Wiki articles moved to CodeProject in October 2013 and will live on, loved, protected and updated by the community.
This is a Collaborative Group

754 members

Comments and Discussions

 
-- There are no messages in this forum --