Jason,
I use ASP to do it. Here is how:
<form action="redir.asp" method="POST">
'Make your login form here
</form>
-----------------------------
Redir.asp
<%
strUsername = Request("username")
strPassword = Request("password")
%>
<html><head><title>Login</title></head>
<script language="JavaScript"><!--
function submit()
{
document.login.submit();
}
//--></script>
<body OnLoad="submit();">
<form action="http://mymailserver:8383/login.cgi" method="POST"
name="login">
<input type="hidden" name="page" value="login">
<input type="hidden" name="username" value="<%= strUsername %>">
<input type="hidden" name="passwd" value="<%= strPassword %>">
</form>
</body>
</html>
-----Original Message-----
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Jason Cox
Sent: Thursday, August 12, 1999 11:09 AM
To: [EMAIL PROTECTED]
Subject: [IMail Forum] remote login confusion
How do I pass login parameters from a form on another page(located on
our web server) to the login.html located on our mail server? (actually
the login.cgi) I can't find the login.cgi script on the mail server and
the tech support guys said they were internal. Can anyone help?
Please visit http://www.ipswitch.com/support/mailing-lists.html
to be removed from this list.
Please visit http://www.ipswitch.com/support/mailing-lists.html
to be removed from this list.