Maybe this is what you want:
<html>
<head>
<title>MyTitle</title>
</head>
<body>
<form action="Your_URL_to_open" method="post" name="frmLogin" target="_new">
<table><tr><td>Username:</
<tr><td>Password:</td><td>
<td><td colspan="2" align="right"><input type="submit" value="Login!"></td></tr>
</table>
</form>
</body>
</html>
In this example the form gets submitted in a new window, to a page called your_URL_to_open, and the method used is the POST method so that neither the username nor the password can be read from the history of your browser.
Greetz
PizzaMetSalami
Main Topics
Browse All Topics





by: whammyPosted on 2003-06-04 at 16:22:04ID: 8653044
You'd be better off posting the username and password to the "login" page or whatever with a form, instead of just using the location. How are you validating the username/password?