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 _______________________________________________ Mono-list maillist - [EMAIL PROTECTED] http://lists.ximian.com/mailman/listinfo/mono-list
