> i have done it for my site to good success. just use your IIS web page to
> prepare a url to
> http://www.yourdomain.com:8383/login.html?username=<uname>&password=<pwd>

Not the most secure way of submiting this info. You should POST the
variables via an HTML form rather that put them in the querysrting (the way
a GET would). That way the username and password are not visible (in
cleartext, no less).

I posted the script I wrote for this yesterday, but once again, herre is
some ASP code that works (assuming you put the username/password) in session
variables. You might need to adapt this to use the request.form properties.
If you can't use ASP and want a PERL script, I can't help you.

<html>
<head></head>
<script language="JavaScript">
<!--
function submitForm()
{document.myform.submit();}
//-->
</script>

<body onLoad="submitForm();">
<form method="POST" action="http://www.yourdomain.com:8383/login.cgi"
name="myform">
<input type="hidden" name="page" value="login">
<input type="hidden" name="userid" value="<%=session("UserName")%>">
<input type="hidden" name="passwd" value="<%=session("Password")%>">
</form>
</body>
</html>



Please visit http://www.ipswitch.com/support/mailing-lists.html 
to be removed from this list.

Reply via email to