I’m having problems with a form I did not create but must use in the rebuild of the site I’m working on.
Please look at:
I’d like to reference this code server side rather than have the email address and form information visible to all that view the source. Here is the code in question (with email in blue)
<FORM id=formGeneric name=formGeneric
action=http://mailer1.websitecomplete.com/asp-bin/FormMachineMailer.asp method=post>
<INPUT id=MailConfirm style="WIDTH: 0px; HEIGHT: 0px" type=hidden value=1 name=MailConfirm>
<INPUT id=MailRequestAddress style="WIDTH: 0px; HEIGHT: 0px" type=hidden
[COLOR=Blue]**value=email@contactemail.net**[/COLOR] name=MailRequestAddress>
<INPUT id=MailRequestName style="WIDTH: 0px; HEIGHT: 0px" type=hidden value="LA Biltmore"
name=MailRequestName>
<INPUT id=MailConfirmationSubject style="WIDTH: 0px; HEIGHT: 0px" type=hidden
name=MailConfirmationSubject>
<INPUT id=Redirect_URL style="WIDTH: 0px; HEIGHT: 0px" type=hidden
value=http://www.somesite.com/ThankYou.html name=Redirect_URL>
<INPUT id=MailConfirmationBody style="WIDTH: 0px; HEIGHT: 0px" type=hidden
name=MailConfirmationBody>
<INPUT id=MailConfirmationFromName style="WIDTH: 0px; HEIGHT: 0px" type=hidden value=gygfy
name=MailConfirmationFromName>
<INPUT id=MailConfirmationFromAddress style="WIDTH: 0px; HEIGHT: 0px" type=hidden
value=45@ww name=MailConfirmationFromAddress>
How can I do this while still allowing the form to function? Is there a better form tutorial out there that would allow me to do the same thing? I feel that it’s very messy coding.
THANKS
PS I’m new to this form coding stuff, especially asp.