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 -> ?? Procedure call in HTF.ANCHOR

?? Procedure call in HTF.ANCHOR

From: Michelle Warner <delonda_at_radium.ncsc.mil>
Date: 1998/03/27
Message-ID: <351C1165.D37CF0D6@radium.ncsc.mil>#1/1

I have a loop to manipulate the contents of a cursor and display information in an html
format. I make a call to htf.anchor linking the information to a procedure call which requires more than one parameter. I have the htf.anchor working for passing one parameter but now I need to pass two - how do I do this? Below is a sample of the code:

       For i IN dwg_cursor LOOP
         htp.tableRowOpen;
         hold :=
htf.anchor('docufind?docnum='i.dwgnum,i.dwgnum,i.dwgnum,i.dwgnum);
         ...
       END LOOP;

The procedure docufind is defined as:
       Procedure docufind(docnum IN varchar2, doctest IN varchar2)
       .....


Thanks in advanced. Received on Fri Mar 27 1998 - 00:00:00 CST

Original text of this message

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