MLM Script and MLM Software

javascript help on asp.net project for MLM?

I am doing a project for MLM in asp.net . there i am creating a treeview of members.I am displaying images of users from a Datatable. How can i display the memberdetails on "MOUSE OVER " event of image control.I am retrieving all kinds of details along with the datatable . Any one pls send me the script ..its urgent plssssssssssssssssssssssssss

Public Comments

  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> <head> <title> Event Demo </title> </head> <body> <script type="text/javascript"> //Hope this works function displayOver () { alert("Mouse Over"); } function displayOut () { alert("Mouse Out"); } function displayClick () { alert("Mouse Click"); } </script> <p><h1> It's Event Land! Click the Buttons! </h1> </p> <a href="#" onmouseout="displayOut()" onclick="displayClick()"> Click This Button! </a> <br></br> <a href="#" onmouseover="displayOver()"> Click This One Too! </a> </body> </html>
Powered by Yahoo! Answers