I am wondering how to implement a live chat on a web site using .NET (C#)

And whether it can be linked to your Windows Live Messenger somehow.

link|improve this question

feedback

7 Answers

up vote 5 down vote accepted

This is very easily accomplished with AJAX. I hate to just hand out code, but this is from a book I read last year, that did just what you want.

using System;
using System.Collections;
using System.Configuration;
using System.Data;
using System.Linq;
using System.Web;
using System.Web.Security;
using System.Web.UI;
using System.Web.UI.HtmlControls;
using System.Web.UI.WebControls;
using System.Web.UI.WebControls.WebParts;
using System.Xml.Linq;
using System.Collections.Generic;

public partial class GroupChat : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        ManageUI();
        RefreshConversation();
    }

    void ManageUI()
    {
        if (GetUserID() == null)
        {
            // if this is the first request, then get the user's ID
            TextBoxMessage.Enabled = false;
            TextBoxConversation.Enabled = false;
            ButtonAddYourMessage.Enabled = false;

            ButtonSubmitID.Enabled = true;
            TextBoxUserID.Enabled = true;
        }
        else
        {
            // if this is the first request, then get the user's ID
            TextBoxMessage.Enabled = true;
            TextBoxConversation.Enabled = true;
            ButtonAddYourMessage.Enabled = true;

            ButtonSubmitID.Enabled = false;
            TextBoxUserID.Enabled = false;
        }
    }


    void RefreshConversation()
    {
        List<string> messages = (List<string>)Cache["Messages"];
        if (messages != null)
        {
            string strConversation = "";

            int nMessages = messages.Count;

            for (int i = nMessages - 1; i >= 0; i--)
            {
                string s;

                s = messages[i];
                strConversation += s;
                strConversation += "\r\n";
            }

            TextBoxConversation.Text =
                strConversation;
        }
    }

    protected void ButtonAddYourMessage_Click(object sender, EventArgs e)
    {
        // Add the message to the conversation...
        if (this.TextBoxMessage.Text.Length > 0)
        {
            List<string> messages = (List<string>)Cache["Messages"];
            if (messages != null)
            {
                this.TextBoxConversation.Text = "";

                string strUserID = GetUserID();

                if (strUserID != null)
                {
                    messages.Add(strUserID +
                        ": " +
                        TextBoxMessage.Text);
                    RefreshConversation();

                    TextBoxMessage.Text = "";
                }
            }
        }
    }
    protected void ButtonSubmitID_Click(object sender, EventArgs e)
    {
        Session["UserID"] =
            TextBoxUserID.Text;
        ManageUI();
    }

    protected string GetUserID()
    {
        string strUserID =
            (string)this.Session["UserID"];

        return strUserID;
    }

}

Rudimentary, but it works. There are 2 textboxes, 2 buttons, and a updatepanel. The messages are held in a List created in Global.asax, and stored in state.

link|improve this answer
I wanna implement a chatbox on a site also, something in the sense of facebook. Do you have a tut link or a book that can guide me through it? – DaMainBoss Aug 27 '11 at 22:13
feedback

You will love Meebo Rooms. Takes no resources of your own and it just works. I understand some people want to be in control a lot of times, but with the amounts of services out there, it makes sense to just mash them up.

Try it out

Meebo Rooms

link|improve this answer
feedback

if you are talking about live-support type interface I would go with one of the many 3rd party services/components like cute live support, no sense reinventing the wheel.

if you are doing this just as a hobby project or need actual chat feature you can simulate real time chat with frequent async calls(Every 1 second) that poll the server for new chat messages.

link|improve this answer
Long polling is probably preferable to pounding the server, even in a hobby project. – Jeffrey Hantin Feb 4 '09 at 2:13
feedback

You could also use silverlight for your front-end. This article describes the implementation of a chat using WCF + WPF, this shouldn't be too difficult to adapt to WCF + Silverlight.

link|improve this answer
feedback

I agree with Element that there is probably little sense in reinventing the wheel here, but if you're really intending on implementing chat yourself for whatever reason, you probably don't want to poll once per second. Consider instead using a technique like long polling: the client always leaves a pending request to the server open, so the server can simply fire off data and complete the request to deliver an event. This has built-in flow control: further events simply queue at the server until the client reopens the receive request.

link|improve this answer
feedback

Take a look at the documentation here to implement an Live Messenger based chat on your web page. Here's an example of it in action (in french).

link|improve this answer
feedback

It's complicated to install and maintain a live chat software. Have a try of Comm100 Live Chat, Zero installation and maintenance. Moreover, it is completely free. :)

http://www.comm100.com/livechat/

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.