Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: PL/SQL Programming problem (tables)

Re: PL/SQL Programming problem (tables)

From: Jerry Bull <gbbull_at_uswest.com>
Date: 1997/03/10
Message-ID: <33244CF7.11C4@uswest.com>#1/1

Vegard Tollefsen wrote:
> htp.tableData(
> htp.formSelectOpen('name','Pick a player');
> htp.formSelectOption('player1');
> htp.formSelectOption('player2');
> htp.formSelectOption('player3');
> htp.formSelectOption('player4');
> htp.formSelectClose;
> );

You need to use the function equivalent to HTP -- HTF:

  htp.tableData(

          htf.formSelectOpen('name','Pick a player') ||
                  htf.formSelectOption('player1') ||
                  htf.formSelectOption('player2') ||
                  htf.formSelectOption('player3') ||
                  htf.formSelectOption('player4') ||
          htf.formSelectClose

  );

Jerry.

-- 
----------------------------------------------------
Jerry Bull, Sr. MTS         Phone: 303-624-3073
U S WEST Technologies       Fax:   303-624-8462
931 14th Street, Suite 920  Email: gbbull_at_uswest.com
Denver, CO  80202
----------------------------------------------------
Received on Mon Mar 10 1997 - 00:00:00 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US