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.
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.