I need to transfer password and username from my java application
page to a jsp page.
My code which changes from application to web page is:-
else if(event.getSource() == Button3)
{
BrowserControl.displayURL
("http://shivan:8080/invis/jsp/test/checkname.jsp?Tpid="+tempid+"");
}
where BrowserControl is another class declared public and
displayURL is declared a static void function.
checkname is the jsp page.
When Button3 is clicked the password and username has to be
transferred. I dont want to pass it as a query string.
Can someone help me?