Home
Getting Started
Solutions
Tutorials
Tips
SE Optimization
Customizing OL
Help and How To
Downloads
Services
Frequently Asked Question
Contact Us
 

How to Add a Form to Office Live (AllForms)

1. Sign up for an account at http://allforms.mailjol.net/

2. There are two ways you can make a form either use their form builder (basic), or build your own (advanced). If you decide to build your own (unless you know HTML) you will want a form builder either Microsoft Front Page or Coffee Cup Form Builder work good. Note: You can also use Bravenet's Form Builder, just replace the 3 lines that it says not to with the code from AllForms.

3. Once you have your created, either a basic form or your own, paste the code into the HTML module.

If you are making your own advanced form here is a sample form. Note: The first line of the code is where you will place the form processing code from AllForms. If you need help with HTML form, check http://www.w3schools.com/html/html_forms.asp

Sample Code

<form method="POST" action="http://free.allforms.mailjol.net/u/######.php">

<p>Name<input type="text" name="name" size="20"></p>

<p>Comments<br>

<textarea rows="4" name="Comments" cols="25"></textarea></p>

<p>File Upload<input type="file" name="upload" size="20"></p>

<p>Check 1<input type="checkbox" name="check 1" value="Check 1"><br>

Check 2<input type="checkbox" name="check 2" value="Check 2"><br>

Check 3<input type="checkbox" name="check 3" value="Check 3"></p>

<p>Radio 1<input type="radio" value="radio 1" checked name="radio"><br>

Radio 2<input type="radio" name="radio" value="radio 2"><br>

Radio 3<input type="radio" name="radio" value="radio 3"></p>

<p>Drop Down<select size="1" name="Drop">

<option>1</option>

<option>2</option>

<option>3</option>

</select></p>

<p><input type="submit" value="Submit" name="B1">input type="reset" value="Reset" name="B2"></p>

</form>

Code Explanation

 
 

Code Results

This not a working Form!