HTP package [message #457581] |
Tue, 25 May 2010 04:57 |
ganesh_n
Messages: 4 Registered: May 2010
|
Junior Member |
|
|
Hi,
I need to create a input text box followed by a "update" button using HTP package in PL/SQL(Oracle 9i)
The screen(its an interface) looks as below
Order Number "Input Text Box" "Update Button"
The scenario is as below..
When an order number (integer) is entered in the text box and the "Update" button is clicked then that Order number shold get updated in the database.
Thanks in advance. PLs reply ASAP.
|
|
|
|
Re: HTP package [message #457585 is a reply to message #457583] |
Tue, 25 May 2010 05:07 |
ganesh_n
Messages: 4 Registered: May 2010
|
Junior Member |
|
|
Hi vamsi,
I got no good knowledge using HTP packages with PL/SQL.
I have written few lines for creation of text Box. its as below.
g_error_step:= 'Making textfields for css order number';
HTP.tableOpen( cattributes => ' border="0" cellpadding="0" cellspacing="1" width="75%"' );
HTP.tablerowopen;
HTP.tabledata(HTF.bold('<font color=blue>CSS Order Number : </font>')||htf.formText(cname=>'p_css_order_num',cvalue=>rtrim(cpo_curr_val.css_order_num),csize=>'6',cmaxlength=>'6')||v_db_id);
HTP.tablerowclose;
HTP.tableclose;
htp.hr;
i want to create a button nxt to the text box, the click of that should re direct it to a procdeure or fuction where update statement is ther ..
|
|
|
|
htp package [message #457908 is a reply to message #457581] |
Wed, 26 May 2010 06:13 |
ganesh_n
Messages: 4 Registered: May 2010
|
Junior Member |
|
|
Hi,
I need to create a button using HTP package in oracle (pl/sql).
and when the button is clicked it should redirect to a procedure with 2 parameters.
Can anyone help me out as to how to write that code.ASAP.
Thanks in advance.
|
|
|
|
|