FluorineFx.NET

ASP.NET2.0 application directory layout

A typical ASP.NET 2.0 application directory structure:

 Only assemblies/types located in the LAC (the bin folder) are accessible for FluorineFx

 

Setup using Visual Studio

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



-or- alternatively if you plan to debug FluorineFx then add to your solution the FluorineFx-2.0.csproj project you have previously downloaded then use 'Add reference...' and select a project reference.

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.