|
|
Anonymous Contact Form Whitepaper
|
|
|
Please read this short whitepaper carefully before using AnonymousContact Form submission.
HTML Form
The HTML Form contains your questionary HTML code. It can contain Javascript and
core HTML controls. Make sure you...
- ...use plain HTML tags when creating the FORM code for your questionary.
- ...do not use any ASP.NET custom controls. (*2)
- ...do not include the <FROM> tag. The <FROM> tag is specified separately
(*1).
- ...do not include any form of linked code (*3)
- ...do not include any submit button. The submit button is added automatically at the
end of the form. (*4)
<FORM action="http://somesite.com/prog/adduser" method="post">(*1)
<p>
Question 1) <INPUT type="text" name="question1"><BR>
Question 2) <INPUT type="text" name="question2"><BR>
Question 3) <INPUT type="text" name="question3"><BR>
<IMG SRC=http://www.myWebsite.com/ip_tracking.jpg>(*3)
<INPUT type="radio" name="sex" value="Male"> Male<BR>
<INPUT type="radio" name="sex" value="Female"> Female<BR>
<INPUT type="submit" value="Send">
(*4)
<INPUT type="reset">
<asp:TextBox ID="TextBox1"></asp:TextBox>(*2)
</p>
</FORM>(*1) |
FORM URL
The FORM URL contains the URL where the form is processed on your server. Forms
are always submitted as POST action.
 
Special Submitted Variables
|
Variable Name |
Description |
|
AC_CLIENTEMAIL |
Holds the the anonymous reply email address if specified by the user. If not specified
an empty string is submitted. |
|
AC_ANONYMIZED_CLIENT_ID |
Holds an anonymized value of the senders IP address (salt hashed). Use to
identify multiple posting from the same client to protect your DB from abuse. |
AC_CUSTOM1
AC_CUSTOM2
...
AC_CUSTOM15 |
Not set yet. |
|
|
|
|
|
|