Adding OnMouseOver to Server Side controls
-
Okay, I know that you are not able to set the "OnMouseOver" event on certain server side web form controls. I have drop-down lists that need the OnMouseOver event, and they are server side. Can anyone tell me how to get these drop-down boxes to handle OnMouseOver events? Thanks, Jon G www.Gizmocoder.com
-
Okay, I know that you are not able to set the "OnMouseOver" event on certain server side web form controls. I have drop-down lists that need the OnMouseOver event, and they are server side. Can anyone tell me how to get these drop-down boxes to handle OnMouseOver events? Thanks, Jon G www.Gizmocoder.com
Could it be the code in the mouseover causing the problem? I can easily put a onmouseover on a dropdownlist without any errors. What exactly is the error you are receiving? Have you tried it with just a simple "alert('here')" message on the mouseover? Rocky <>< www.HintsAndTips.com www.GotTheAnswerToSpam.com
-
Could it be the code in the mouseover causing the problem? I can easily put a onmouseover on a dropdownlist without any errors. What exactly is the error you are receiving? Have you tried it with just a simple "alert('here')" message on the mouseover? Rocky <>< www.HintsAndTips.com www.GotTheAnswerToSpam.com
My stupidity was the problem. For some reason, if i only updated the file that was modified (myPage.aspx and myPage.aspx.vb) onto the server, it wouldn't work. Although, after updating ALL the files in my Inetpub, it magically worked. There must have been some kind of link file or something that I don't know about that caused it not to function properly. Anyways, Thanks for the feedback. Jon G www.Gizmocoder.com