Click here to Skip to main content
Licence 
First Posted 12 Jun 2003
Views 112,413
Bookmarked 44 times

Cliche RollOvers - Revisted

By | 17 Jun 2003 | Article
Want to use a simple image rollover control?

Introduction

What makes this code important? It is an easy way to get started writing server controls. The functionality this control provides is relatively simple. Almost every website has some form of rollover effect, implying this control will also be reusable. I wanted a simple design time interface, and an even simpler run time "experience."

Making it easier for programmers: Binding design time interfaces into your controls

Figure 1

In figure 1, there are properties with ellipses buttons off to the right. ImageURL, and HoverImageURL, are properties that use the System.Design namespace (contained within System.Design.dll) to construct a custom "Select Image" dialog, derived ultimately from System.Drawing.Design.UITypeEditor. Binding custom properties to design time developer interfaces is done with the markup before the function itself. In the following code snippet the EditorAttribute is the markup that binds the "Select Image" dialog to the toolbox window.

<Bindable(False), _
    Category("Appearance"), _
    EditorAttribute(GetType(UrlGraphicEditor), _ 
                    GetType(System.Drawing.Design.UITypeEditor)), _
    DefaultValue(""), _
    Description("This is the mouseover image for the surfer.")> _
    Public Property HoverImageUrl()...
        Get ...
        End Get
        Set ...
        End Set 
    End Property

This construct has two great benefits. First we can now show any dialog we wish to the developer by inheriting the System.Drawing.Design.UITypeEditor. This is useful because some information is by nature best expressed in a visual format, such as images or drawings. Second, we now have the ability to pipe visual information into our component in a completely abstracted representation. For example, if the dialog is showing a list of time zones, the control author may have decided to store the offset to GMT. In the past we, component authors, have not had the luxury of this level of abstraction. As a result the "design time experience" was stunted from designer point of view.

The design surface

After dropping this toolbox item onto the design surface, and setting a few properties, this tag is generated by the UI.

<cc1:hoverbutton id=HoverButton1 runat="server" 
        HoverImageUrl="logoBW225x72.gif" 
        ImageUrl="logo225x72.gif" 
        NavagationURL="WebForm1.aspx" 
        BorderWidth="0px"></cc1:HoverButton>

Users: even the most challenged of them, can run this control

The user's computer requests the page from the server. The server then generates some pretty client side JavaScript, like so:

<script DEFER = true language= "javascript" type="text/javascript"> <!-- 
    function newRollOver(targetDOmUrlName,URL){ 
        var img = document.images; 
        var i =0;
        // Look Though the DOM images for the one that is named 
        // correctly, then preform the swap.        
        for(i=0; i < img.length; i++)
            if (img[i].name == targetDOmUrlName) img[i].src = URL; 
    }
//--> </script>

When the user hovers his mouse over the image this client-side script is invoked, and the computer flips the image to the alternative URL. Presto - simple functionality wrapped up in a nice clean object.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here

About the Author

Jason McBurney

Web Developer

United States United States

Member

Berkeley Grad (B.A. Computer Science) With MBA


Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
GeneralMinor changes PinmemberJVMFX4:36 26 Feb '05  
GeneralRe: Minor changes PinmemberJason McBurney8:22 15 Feb '07  
Questionscript problem? Pinmembermlavallee15:55 2 Apr '04  
AnswerRe: script problem? PinmemberJason McBurney6:18 5 Apr '04  
QuestionHow do you use it? PinmemberWilly16136:26 19 Feb '04  
GeneralSuggestion PinsussGilberto Bermudez8:17 26 Sep '03  
GeneralSubmit button rollover Pinmembermacupryk10:22 4 Aug '03  
GeneralRe: Submit button rollover PinmemberJason McBurney10:53 4 Aug '03  
GeneralRe: Submit button rollover Pinmemberttrfanatic5:10 9 Aug '03  
GeneralSuggestion PinmemberGreg Ennis15:55 18 Jun '03  
QuestionProblem with several on a page? PinmemberJonTampa7:18 17 Jun '03  
AnswerRe: Problem with several on a page? PinmemberJason McBurney8:23 18 Jun '03  
GeneralCode Link Pinmemberfifi6:22 13 Jun '03  
GeneralRe: Code Link PinmemberJason McBurney6:32 13 Jun '03  
GeneralRe: Code Link PinadminChris Maunder8:06 13 Jun '03  
GeneralRe: Code Link PinmemberDaniel Turini11:08 13 Jun '03  
GeneralRe: Code Link PinmemberJason McBurney11:47 13 Jun '03  

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

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

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120517.1 | Last Updated 18 Jun 2003
Article Copyright 2003 by Jason McBurney
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid