[Mono-list] xsp and bytefx

danilo lujambio danilo@tau.org.ar
23 Aug 2003 07:35:19 -0300


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" %>

and 
<%@ Page Language="C#" %>
<%@ import namespace="System.Data" %>
<%@ import namespace="ByteFX.Data.MySQLClient" %>

and
<%@ Page Language="C#" %>
<%@ import namespace="System.Data" %>
<%@ assembly name="ByteFX.Data.MySQLClient" %>

and the errors are similar.

Can anybody mark my error ?

Thanks !

dl