From: Alan M. <al...@me...> - 2003-06-04 13:21:10
|
Hi, I've just installed .NET Framework... and ASP>NET Webmatrix (if anyone else has tried it) I then installed then Firebird .NET Provider 1.0 Now in the class browser of Webmatrix, I can see the FirecordSQL.Data.Firebird class - it's in the same group as the System.Data classes.. Now I run the C# sample with this header <%@ Page Language="C#" %> <%@ import Namespace="System.Data" %> <%@ import Namespace="FirebirdSql.Data.Firebird" %> <script runat="server"> etc etc. and I get an error: Compiler Error Message: CS0246: The type or namespace name 'FirebirdSql' could not be found (are you missing a using directive or an assembly reference?) Source Error: Line 1: <%@ Page Language="C#" %> Line 2: <%@ import Namespace="System.Data" %> Line 3: <%@ import Namespace="FirebirdSql.Data.Firebird" %> Line 4: <script runat="server"> Line 5: Can someone tell me what I might be missing? thanks Alan PS- I've tried copying the firebird dll to the framework directory just in case but it makes no difference. |