[Mono-list] xsp and bytefx
Gonzalo Paniagua Javier
gonzalo@ximian.com
Sat, 23 Aug 2003 12:34:37 +0200
El sáb, 23-08-2003 a las 12:35, danilo lujambio escribió:
> Hi,
>
> I made a test program in C# to connect to mysql database using bytefx
> and it worked OK. Then I tried to por the same program to webform and I
> tested it with xsp.
>
> I could not pass this step:
>
> The namespace `ByteFX.Data' can not be found
>
> I probed with :
> <%@ Page Language="C#" %>
> <%@ import namespace="System.Data" %>
> <%@ import namespace="ByteFX.Data" %>
You need:
<%@ assembly name="ByteFX.Data" %>
-Gonzalo