PDA

View Full Version : IE image input issues


NancyJ
10-06-2005, 03:40 PM
Is there any work around for the IE problem with image input buttons?
in FF I can just do request.form("buttonname") and get the value the same as any other form control, but in IE ofcourse I have request.form("buttonname.x") and request.form("buttonname.y") which give me the coordinates of the point I pressed but not the actual value...

glenngv
10-07-2005, 06:28 AM
Is the value important for you? If buttonname.x or buttonname.y exists in the request.form collection then you know that the button named "buttonname" is clicked. Why do you still need to know the value?