For furhter installation instructions, please visit http://wiki.freetextbox.com/

------------------
Requirements:
------------------
 - .NET Framework 1.0, 1.1, or 2.0
 - IIS 5.0 or 6.0

--------------------
Installation of dll
--------------------
1. Copy the appropriate FreeTextBox.dll from Framework-X.X into your /bin/ folder

2. If you have a license file, copy FreeTextBox.lic into the /bin/ folder 
   next to FreeTextBox.dll

------------------------------------------
Installing the FreeTextBox support files
-------------------------------------------

FreeTextBox uses JavaScript, images, and xml files. To correctly install FreeTextBox, 
you must install these files. FreeTextBox has two ways of accessing these files:

1. External Files - Before FreeTextBox 3.0, all images, javascript and xml were 
   stored as external files. By default, FreeTextBox looks in 
   /aspnet_client/FreeTextBox/ for these files. If you want to store the files in a 
   different location, you need:
   
   - Tell FreeTextBox which kind of files to look for external resources: JavaScriptLocation=ExternalFile, ToolbarImages=ExternalFile, ButtonImagesLocation=ExternalFile
   - Set the SupportFolder property of your FreeTextBox instance to the directory where you copied the files. For example, if your website is stored at www.mysite.com/FreeTextBoxFiles/, you should set SupportFolder="/FreeTextBoxFiles/".

   <FTB:FreeTextBox id="FreeTextBox1" SupportFolder="~/myfolder/FreeTextBox" 
	JavaScriptLocation="ExternalFile"
	ToolbarImages="ExternalFile
	ButtonImagesLocation="ExternalFile"
	runat="server" />

2. Internal Resources - As of FreeTextBox 3.0 all the images, javascript and xml are stored 
   inside the FreeTextBox.dll. In ASP.NET 2.0 these files are automatically pulled from 
   the FreeTextBox.dll. In ASP.NET 1.x, you need to add the following httpHandler to web.config:

  <?xml version="1.0" encoding="utf-8" ?>
  <configuration>
   <system.web>
    <httpHandlers>
     <add verb="GET" path="FtbWebResource.axd" type="FreeTextBoxControls.AssemblyResourceHandler, FreeTextBox" />
    </httpHandlers>
   <system.web>
 <configuration>


------------------
Using FreeTextBox
------------------

To add FreeTextBox to an ASP.NET page, do the following:

1. Add the following line to the top of your page:

   <%@ Register TagPrefix="FTB" Namespace="FreeTextBoxControls" Assembly="FreeTextBox" %>


2. Add the following code between <form runat="server"> tags:

   <FTB:FreeTextBox id="FreeTextBox1" runat="Server" />


