Radio Buttons/Passing parameters


[ Follow Ups ] [ Post Followup ] [ Message Board ]

Posted by 'Racquel Robinson' on August 22, 2001 at 10:55:59 EST:

Hello,

I need to create radio buttons on a form! ( I know how to do that) but I also need to pass those values(View_Type) to the action page.(I do not have that part. Any suggestions? Do I have to define the parameter name I use as Name="View_Type" with my radio buttons ?

Here's my code:

View_Type varchar2(2);

htp.print('

');

htp.formHidden(cname=>'userid', cvalue=>l_user);
htp.formHidden(cname=>'viewtype', cvalue=>View_Type);

htp.FORMRADIO ('View_Type','IA','YES');
htp.p('Initial Approved');
htp.br;
htp.FORMRADIO ('View_Type','FA');
htp.p('Final Approved');
htp.br;
htp.FORMRADIO ('View_Type','RD');
htp.p('Request Denied');
htp.br;
htp.FORMRADIO ('View_Type','DL');
htp.p('Deleted');


Follow Ups:



Post a Followup


Name:
E-Mail:
Subject:

Message:


[ Follow Ups ] [ Post Followup ] [ Message Board ]