Never mind I found it but here you go for anyone else who needs this MICROSOFT WORD document <% response.ContentType ="application/msword" %>
RTF document <% response.ContentType ="application/rtf" %> MICROSOFT EXCEL document <% response.ContentType ="application/x-excel" %> MICROSOFT POWERPOINT document <% response.ContentType ="application/ms-powerpoint" %> PDF document <% response.ContentType ="application/pdf" %> ZIP document <% response.ContentType ="application/zip" %> -----Original Message----- From: Dylan Barber Sent: Tuesday, October 15, 2002 8:13 AM To: ActiveServerPages Subject: RE: radio button Q well you can set the disabled dynamically like this <input type="radio" id="radioID1" <% if rs.1 = "x" then %> disabled <% end if %> > where rs.1 is the field you are checking and x is the value you are wanting ____________________________________________________ Dylan Barber (CIW Professional, A+ Technician) Webmaster & Content Manager Codegalaxy.com e-mail [EMAIL PROTECTED] -----Original Message----- From: Tsiris Alexandros [mailto:[EMAIL PROTECTED]] Sent: Tuesday, October 15, 2002 7:24 AM To: ActiveServerPages Subject: RE: radio button Q > to dynamically change the state of a radio button you > can use onClick: > > <input id=myRadio1 type=radio name=radio1 > onclick='myRadio2.disabled = true'> > <input id=myRadio2 type=radio name=radio1> Thanks Andy! the above sounds like what I need. However, my problem is that when another button is pressed, it is then that I need to enable/disable the various radio buttons. Thanks! --- You are currently subscribed to activeserverpages as: [EMAIL PROTECTED] To unsubscribe send a blank email to %%email.unsub%% --- You are currently subscribed to activeserverpages as: [EMAIL PROTECTED] To unsubscribe send a blank email to %%email.unsub%% --- You are currently subscribed to activeserverpages as: [email protected] To unsubscribe send a blank email to [EMAIL PROTECTED]
