Hi,
I have a problem, I must send the parameters UserName and Password with the method action from one page that is the form, to the another one,MailBee.asp

<form action="MailBee.asp" method="post" id="form1" name="form1">
Is there anyone who can help me?

-----------------------------
This message is posted by http://asp.forumszone.com

Re: send parameters with the method action by McKirahan

McKirahan
Wed Jun 22 05:29:44 CDT 2005

"erjona" <staticy2003@yahoo.it> wrote in message
news:926054187828281@asp.forumszone.com...
> Hi,
> I have a problem, I must send the parameters UserName and Password with
the method action from one page that is the form, to the another
one,MailBee.asp
>
> <form action="MailBee.asp" method="post" id="form1" name="form1">
> Is there anyone who can help me?
>
> -----------------------------
> This message is posted by http://asp.forumszone.com
>

Is this what you're looking for?

<form action="MailBee.asp" method="post" id="form1" name="form1">
<input type="hidden" name="Username" value="username">
<input type="hidden" name="Password" value="password">
</form>

Of course the "value=" values will change.