|
Re: PSP (PL/SQL Server Pages) [message #77388 is a reply to message #77354] |
Tue, 03 September 2002 04:34 |
d.t.r.prasad
Messages: 1 Registered: September 2002
|
Junior Member |
|
|
1)create a psp page
starting with directives
page language="PL/SQL"
plsql procedure="aaaa"
html start
head portion
body start
in which
scriplet start
..........
...........
eligible pl/sql code
scriplet end
body end
html end
2)from command line
c:>loadpsp -user scott/tiger@... -abovefilename-
response will show that a procedure 'aaaa' has been created.
3)if you are already create a dad like scott_dad
after opening a browser
with http://localhost/
and choosing mod_plsql(name your dad give username and password and connect string )
4)invoke the browser
http://localhost/pls/scott_dad/aaaa
you can see the out put.
you can use htp/htf packages of webdb for the code
or owa_util package
|
|
|