unknown device
06-15-2003, 02:05 PM
hello. i tried to get this done with html alone, but it doesn't seem to work properly. so im sure there's an easy fix using ASP.
all i'm trying to do is pass the information entered in a FORM in an HTML page, to a URL.
here it is:
htmlpage.htm
<html>
<form method="post" action="login.asp">
<input type="text" name="username" size="30">
<input type="text" name="password" size="30">
<input type="submit"> <input type="reset">
</form>
</html>
login.asp
?
so all login.asp has to do is grab the entries from "username" and "password" and output them into a format like so:
http://username:password@ftp.domain.net
and pass the user to the link described above.
thats it! any help would be MUCH appreciated!
all i'm trying to do is pass the information entered in a FORM in an HTML page, to a URL.
here it is:
htmlpage.htm
<html>
<form method="post" action="login.asp">
<input type="text" name="username" size="30">
<input type="text" name="password" size="30">
<input type="submit"> <input type="reset">
</form>
</html>
login.asp
?
so all login.asp has to do is grab the entries from "username" and "password" and output them into a format like so:
http://username:password@ftp.domain.net
and pass the user to the link described above.
thats it! any help would be MUCH appreciated!