Oracle 10G Portal - PL/SQL Portlet :: Form Submission [message #48050] |
Thu, 14 October 2004 01:04 |
Dharmendra Kumar Gaddibhu
Messages: 1 Registered: October 2004
|
Junior Member |
|
|
HI
Below is the sample code where i tried to submit the portlet to a procedure called show
htp.p('<HTML>');
htp.p('<HEAD>');
htp.p('<TITLE>Example</TITLE>');
htp.p('</HEAD>');
htp.p('<BODY>');
htp.p('Example of A Dynamic Page');
htp.p('<ORACLE>');
declare
begin
htp.formOpen('SCOTT.PORTALDYNAMIC.show','POST');
htp.formSubmit('button');
htp.formClose;
end;
htp.p('</ORACLE>');
htp.p(' FORM TAG REMOVED >');
htp.p('</BODY>');
htp.p('</HTML>');
The portlet is displaying but when i click the submit button it is not able to show the page , but when i click refresh button on the page it is displaying.
can anybody helpme out from this problem
|
|
|