|
 |
asp_web_howto thread: Radio Button doesn't work in IE5 on a Mac
Message #1 by "Ruth Bratton" <rubratton@d...> on Sun, 15 Apr 2001 20:02:55
|
|
I have an ASP page that works in both Netscape and IE on a PC, and works
in Netscape on a Mac. But in IE 5 on a Mac, one radio button doesn't
work.
The code where the button is defined is as follows:
=============================
response.Write "<tr>" &_
"<td width=100 align='Left' valign='Top'></td>" &_
"<td width=100 align='Left' valign='Top'></td>" &_
"<td width=100 align='Left' valign='Top'></td>" &_
"<td width=100 align='Center' valign='Top'>" & strWhichTree & " "
& "<INPUT NAME='CRN1' TYPE='Text' VALUE='' Size='5' MaxLength='5'
TabIndex=2></td>" &_
"<td width=100 align='Left' valign='Top'><INPUT NAME='DEL1'
TYPE='Radio'>Del</td>" &_
"<td width=100 align='Left' valign='Top'></td>" &_
"<td width=100 align='Left' valign='Top'></td>" &_
"</tr>"
=============================
The page checks the button status here:
================================
If request.form("DEL1")="on" then
strBranch=1
call DeleteWebchce
end if
================================
Does anyone see something obvious that would cause problems with the
Mac/IE combination? When DEL1 is checked, it doesn't recognize it. In all
other configurations, the delete subroutine is called and it operates
correctly.
thanks!
Ruth Bratton
Message #2 by "Hariharan" <hariharan_m2001@r...> on Mon, 16 Apr 2001 10:28:52
|
|
Hi
Why don't u try this-
<INPUT NAME='DEL1' TYPE='Radio' Value='Del'>Del
================================
If request.form("DEL1")="Del" then
'do something
else
'do other thing
end if
================================
Regards,
Hari
|
|
 |