How can i give the URL for my HTP procedure to dispaly a page .
Like i created a sample HTP code as :
create or replace procedure test IS
BEGIN
htp.htmlopen ;
htp.headopen ;
htp.title('RAWAT Example ') ;
htp.headclose ;
htp.htmlclose ;
end test ;
/
Now i want to display this in a page . Where i have to define the URL for the page in the procedure .
Thanx in advance
Rawat
Like i created a sample HTP code as :
create or replace procedure test IS
BEGIN
htp.htmlopen ;
htp.headopen ;
htp.title('RAWAT Example ') ;
htp.headclose ;
htp.htmlclose ;
end test ;
/
Now i want to display this in a page . Where i have to define the URL for the page in the procedure .
Thanx in advance
Rawat