Re: select boxes inside html table:web server 2.0

From: Olle Granlund <olle.granlund_at_mailbox.swipnet.se>
Date: 1996/11/02
Message-ID: <MPG.ce58b0d8044990e989680_at_nntpserver.swip.net>#1/1


In article <syarla.127.000B7E88_at_pt4064.pto.ford.com>, syarla_at_pt4064.pto.ford.com says...
>
> Hi,
>
> I want to put select boxes ( values will be loaded from cursors ) inside
> tables. I can create select boxes and display it in the web browser bot not
> inside tables.
> htp.tableopen;
> htp.tablerowopen;
> htp.tabledata(htf.formselectopen(' ') --- ???
> htp.formselectoption(' '); --- ???
> htp.tablerowclose;
> htp.tableclose;
>
>
> bye
>
> Suresh Yarlagadda
> Ford Motors
>

Try like this...

htp.tableopen;
htp.tablerowopen;

htp.tabledata(

		htf.formselectopen 			||
		htf.formselectoption('Larry')	||
		htf.formselectoption('Bill')	||
		htf.formselectclose)
		);

htp.tablerowclose;
htp.tableclose;

drop a mail if you want 'working' code

/later Olle Received on Sat Nov 02 1996 - 00:00:00 CET

Original text of this message