Click to See Complete Forum and Search --> : Can Asp.Net find mouse coordinates?


ZhiYi
March 20th, 2006, 03:58 AM
Hi,

Are there Asp.Net functions to find the cursor position of a mouse?
Also, are there functions to find if the mouse cursor is within a listbox?

A C# code (windows form) sample is shown below:

Listbox lb; //lb is a listbox
Point cpos = lb.PointToClient(Cursor.Position); //find coordinates of mouse
if(lb.ClientRectangle.Contains(cpos)) //if mouse cursor is within the listbox

Are there any asp.net functions which can do the same as the above c# methods?

Shuja Ali
March 20th, 2006, 04:27 AM
You would have to use Client side Javascript for that. Here is a link for the Javascript http://www.codelifter.com/main/javascript/capturemouseposition1.html

HanneSThEGreaT
March 20th, 2006, 05:40 AM
You posted this in the scripting forum as well, but in anycase, here's the answer I posted there as well...

http://www.codeguru.com/forum/showthread.php?goto=newpost&t=380335