Okay, I just downloaded and installed the sample version - now what?

Last post 04-20-2009, 2:49 AM by Kenneth. 1 replies.
Sort Posts: Previous Next
  •  04-18-2009, 10:28 PM 51234

    Okay, I just downloaded and installed the sample version - now what?

    How do I integrate this with my website?  I mean, I want to click a chat button on my website and have something happen, like open a chat room.
     
    What does this thing do?
     
    I tried opening the solution but I get an error that it's written in .Net 1.1.  Who in the world uses 1.1 anymore?
     
    Does anyone know of any other chat room software that works with .Net 3.5 web sites?
     
     
  •  04-20-2009, 2:49 AM 51247 in reply to 51234

    Re: Okay, I just downloaded and installed the sample version - now what?

    Hi lianaent,
     
    1.   I tried opening the solution but I get an error that it's written in .Net 1.1.
     
    Cute Chat can works with .net 3.5, please reference the requirements here: http://cutesoft.net/ASP.NET+Chat/Requirements/default.aspx
     
    2.How do I integrate this with my website?  I mean, I want to click a chat button on my website and have something happen, like open a chat room.
     
    Integrate with your website, you need to reference here:
    http://cutesoft.net/ASP.NET+Chat/Developer-Guide/scr/DeploymentIntegration.htm
     
    If you want to click a chat button and then open a chat room, try the code below:
     
        protected void chat_Click(object sender, EventArgs e)
        {
            //1 is the ID of the chat room
            string chatURL = "http://localhost:15408/CuteChat/CuteSoft_Client/CuteChat/Channel.Aspx?Place=Lobby-1";
            Response.Redirect(chatURL);
           
        }
     
     
    Regards,
     
    Ken
View as RSS news feed in XML