Re: Can you explain this?

  •  07-22-2005, 12:13 PM

    Re: Can you explain this?

    When I followed above step, this is what it looked like
     
     *******************************************************
     

    using System;

    using System.Collections;

    using System.ComponentModel;

    using System.Web;

    using System.Web.SessionState;

    namespace WebApplication3

    {

    /// <summary>

    /// Summary description for Global.

    /// </summary>

    public class MyDataProvider : CuteSoft.Chat.DataProvider

    {

    public override string GetUserDisplayName(string uniquename);

    public override string[] ListUserUniqueName();

    public override bool IsAdministrator(string useruniquename);

    public override string[] SearchUserUniqueNameByDisplayName(string name);

     

    }

    public class MyUserAdapter : CuteSoft.Chat.UserAdapter

    {

    public override string GetUserUniqueName(System.Web.HttpContext context);

    }

    public class IbuySpyConnectionStringProvider: CuteSoft.Chat.ConnectionStringProvider

    {

    protected override string GetConnectionString(CuteSoft.Chat.UserIdentity user);

    }

     

    }
     
     
    *******************************************
     
    I got the following errors


    *******************************************
     c:\inetpub\wwwroot\WebApplication3\Global.asax.cs(12): The type or namespace name 'CuteSoft' could not be found (are you missing a using directive or an assembly reference?)
    c:\inetpub\wwwroot\WebApplication3\Global.asax.cs(20): The type or namespace name 'CuteSoft' could not be found (are you missing a using directive or an assembly reference?)
    c:\inetpub\wwwroot\WebApplication3\Global.asax.cs(24): The type or namespace name 'CuteSoft' could not be found (are you missing a using directive or an assembly reference?)
    c:\inetpub\wwwroot\WebApplication3\Global.asax.cs(26): The type or namespace name 'CuteSoft' could not be found (are you missing a using directive or an assembly reference?)

    ***************************************************

    So please suggest
View Complete Thread