help with creating image and a pop up

G

Guest

Ok, I need to figure out the best way to create an image with a hyperlink
with in. I have a gridview which lists peoples names, I want to put in a
column that displays each persons summary data i.e. how much time they spent
working on a project for a certain time period.

I envisage that an image will need to be created for each person that is
color-coded based on some criteria and will also contain a hyperlink to
anther page. The image will also need to show a hover image of further
details when the user puts there mouse over it.

Any ideas?
 
G

Guest

NH,
You can easily use CSS to add hover effects to a link.
Heres a theme link to get you started.
http://www.codeproject.com/aspnet/ThemesAndSkins.asp

Then you just add a cssclass to the hyperlink .cssclass="ontime"
..cssclass="late"
CSS file...
..late A:hover {background-image: url(I/stoph.gif)}
..late A {background-image: url(I/stop.gif)}
..ontime A:hover {background-image: url(I/ontimeh.gif);}
..ontime a { background-image: url(I/ontime.gif);}

Good Luck
DWS
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top