R
Ray at home
You'd have to use your client side code to post a form, load a url, or
something like that with your data. At what point would you want to send
the coordinates? You certainly won't want to do it each time the coordinate
change.
document.location.href='page2.asp?x='+tempX+'&y='+tempY
Then just grab the values from the querystring.
Ray at home
something like that with your data. At what point would you want to send
the coordinates? You certainly won't want to do it each time the coordinate
change.
document.location.href='page2.asp?x='+tempX+'&y='+tempY
Then just grab the values from the querystring.
Ray at home