A typical ASP.NET 2.0 application directory structure:
![]() |
Only assemblies/types located in the LAC (the bin folder) are accessible for FluorineFx |
It is recommended to go through the "FluorineFx Visual Studio 2005 Wizard" tutorial to create a FluorineFx enabled solution.
If you prefer to manually setup a solution the following list shows the minimal steps required:
1. Create your projects, or open an existing solution.
2. Use the 'Add reference...' command to add the required assemblies

3. Add the following lines to your Web.config file, into the <system.web>
node :
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
...
<system.web>
<httpModules>
<add name="FluorineGateway" type="FluorineFx.FluorineGateway,FluorineFx" />
</httpModules>
...
</system.web>
...
</configuration>
4. Create a blank Gateway.aspx file with 'Add Web Form...'. The gateway URL will point to this page.