JSP question
Hi
I have a question
I have a jsp page in which I have all the names of the databases in a select option tag.Whenever I select a database, I want that the name of the database and the user name and the password be transferred to the other jsp page that is called.I dont want to use the submit() as the submit has another funciton.
I can use the function below to transfer the user name and password as well as the name of the database, but I dont want the user name and password to be shown in the address bar.even though the method of post is POST and not GET, all the information passed to the other jsp page is shown.
<script LANGUAGE="JavaScript">
function forward(base){
var param = base.value;
location.href="Test2.jsp?base=" + param;
}
</script>
and In select part I have
<select name='base1' id='base1' onchange="forward(this)" >
can u help me how can I tranfer the parameters with out any problem of this kind?
thanks in advance

