Not signed in (Sign In)

Vanilla 1.1.4 is a product of Lussumo. More Information: Documentation, Community Support.

    • CommentAuthorashmi
    • CommentTimeDec 8th 2006
     
    is it possible to create a disjointed rollover in asp.

    I have a access database linked to a some asp pages. I have a list of records on the page and a display 'window' which will show additional info about each record and the info in the window will change when the cursor moves over each record without opening a new window for each record.

    I can do this in fireworks and in photoshop, just wondered if it was possible in asp.
  1.  
    You can write the code to the browser to do "disjointed rollovers" if that's what you mean
    • CommentAuthorjustnajm
    • CommentTimeDec 18th 2006
     
    Hi,

    At the browser it is possible through javascript and if you want to do that through asp then you will have to write the whole code (i.e. javascript) with the help of asp commands such as:

    response.write("<script language='Javascript'>");
    response.write("function onRollOver(){");

    and so on the whole code.
    An easy method of the similar task is to apply this disjoint rollover effect through dreamweaver and simple steps can be find over here:

    http://www.dwfaq.com/tutorials/basics/disjointed.asp

    then the code generated by dreamweaver, you will have to write it through asp and at the place of image or link put your record. So it becomes a link and can easily perform rollover effect. I can give you the code but it will only increase the length of code. If you cannot make it, tell me I will make one for you.