Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How to hide URL parameter in mod_plsql

Status
Not open for further replies.

kswati

Programmer
Apr 29, 2005
1
US
Hi,

In our web application we are executing oracle stored procedure by calling them as url using mod_plsql.
e.g.

htp.p('..
<head>
..some meta tag
<script>
function validate()
{document.location="'||PKg2.Fc_Key_Value('path')||'pkg1.P_Process1?P_User_Code='||P_User_Code||'&P_para2='||Lc_para_2|'&P_para3="+l_para3+"&P_Password="+l_pwd;}
..
..
}
</script>
</head>
<body>
..
..
</body>

Is there any way to hide the parameter passed in the URL in above example.Can we use POST in the URL string.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top