Web App

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I insert a System.Web.UI.WebControls.Image in my Web Form, and I want to change the image file when the mouse get over the Image, but there I can't find any onMouseOver event. how can I do that

I complete new in Web Applications, thanks in advantage...
 
You will need to perform that action in some client-side code. The
webcontrol generates some HTML that is used by the browser to render the
image (probably an <img> tag).

If you open the source in the browser, you should be able to see the image
that you want to effect. There are no postbacks for this types of events.

http://msdn.microsoft.com/workshop/author/dhtml/reference/events/onmousemove.asp

Hector Martinez said:
I insert a System.Web.UI.WebControls.Image in my Web Form, and I want
to change the image file when the mouse get over the Image, but there I
can't find any onMouseOver event. how can I do that?
 
Back
Top