From: Carlos G. A. <car...@te...> - 2003-06-04 13:28:13
|
Hello: > 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 Are you using a web.config file ?? you need one, see example in Examples\ASP.NET directory of the .NET provider installation <?xml version="1.0" encoding="UTF-8" ?> <configuration> <system.net> </system.net> <system.web> <compilation> <assemblies> <add assembly="FirebirdSql.Data.Firebird, Version=1.0.1154.37639, Culture=neutral, PublicKeyToken=a39b891b3af74145" /> </assemblies> </compilation> .................. .................. </system.web> </configuration> -- Best regards Carlos Guzmán Álvarez Vigo-Spain "No tengo dones especiales.Sólo soy apasionadamente curioso" Albert Einstein, científico. |