From: Carlos G. A. <car...@te...> - 2003-07-29 12:16:23
|
Hello: > I created a new web application and included the ASP.NET example for C#. It > compiles just fine but, I am receiving an error when I run it. The error on > the page indicates "File or assembly name FirebirdSql.Data.Firebird.dll, or > one of its dependencies, was not found." > Obviously, I'm missing some basic pathing somewhere. Any tips would be > appreciated. Are you using a web.config file ?? you need it for specify the Firebird .NET provider assembly: <compilation> <assemblies> <add assembly="FirebirdSql.Data.Firebird, Version=1.0.1154.37639, Culture=neutral, PublicKeyToken=a39b891b3af74145" /> </assemblies> </compilation> -- Best regards Carlos Guzmán Álvarez Vigo-Spain |