Click here to Skip to main content
15,861,168 members
Articles / Web Development / HTML
Article

Building an AJAX based chat room in ASP.NET

Rate me:
Please Sign up or sign in to vote.
4.86/5 (85 votes)
1 Nov 20063 min read 592.8K   141.5K   253   138
Build an HTTP based chat room without the need for a Java Applet or an ActiveX control.

Introduction

I built my first chat room using ASP 3.0. It was nothing more than two text boxes that sent messages to an application variable that gets put on the page when it refreshes every second. At that time, building a true chartroom required using a Java Applet or an ActiveX control. HTTP based chart rooms suffered from the same issues my basic chat room suffered from. These issues included constant page refreshes which causes an annoying flicker and sound. That has changed with the introduction of AJAX. AJAX is the combination of Asynchronous calls with JavaScript and XML. A true chat room could now be built using server side code with some JavaScript. This article is not an introduction to AJAX. It is assumed that you have a basic knowledge of using AJAX with ASP.NET. This article is an introduction to using AJAX techniques to create a basic chat room.

The sample application

The sample application is a single chat room with many users. It maintains a list of users that gets populated as users log in. The list gets shorter as a user session times out. The chat room also permits the execution of some command-line-like functions such as /admin clear which clears the chat room, and /nick [Name] which changes the current user's nickname.

What you need to know

This application uses a class called ChatEngine. This class handles all chat room messages and users. Users are stored in a Hashtable, and messages are stored in a StringCollection.

C#
Hashtable users;
StringCollection chat;

A global instance of ChatEngine is declared in Global.asax.cs to be shared by all users of the chat room:

C#
public static UChat.ChatEngine.IChatEngine Engine = 
              new UChat.ChatEngine.ChatEngine();

A JavaScript timer function is used to asynchronously pull data from the global variable and renders it on the page.

JavaScript
function setTimers()
{
  timeID = window.setTimeout( "updateAll()", refreshRate );
}

Each user is identified by a supplied username and a GUID.

C#
public void AddUser(string id, string user)
{
      //make sure user name does not exist already
      if( !UserExists( user ) )
      {
            //add user to users list
            users.Add( id, user );
                                    
            //display a notification message to all users 
            chat.Add( this.MakeServerMessage(string.Format(
                      joinedfmt, user ) ));
      }
}

Screenshots and application workflow

Sample screenshot

The default page shows the basic info of the current chat session, such as number of users and the size of the chat log. In order for a user to join the chat room, a user name must be supplied.

When the Login button is clicked, the following function is executed:

C#
protected void Login( object sender, EventArgs e )
{
      string user = txtUsername.Text;

      if( !ValidateNick( user ) ) return;

      if( Global.Engine.UserExists( user ) )
      {
            lblErrorMsg.Text = "A user with this " + 
                 "name already exists, try again.";
            return;
      }
      Response.Redirect( "Server.aspx?action=Login&u=" + user );
}

After some validation, the user is directed to a page where he is added to the users' list using the AddUser function above. When this is done, the user is redirected to the chat.aspx page where the following JavaScript functions are executed:

Sample screenshot

JavaScript
<script type="text/javascript">
      sniffBrowserType();
      //Shows loading.. screen
      showLoadScreen();
      //Set the javascript timer and 
      //loads user list and messages 
      setTimers();
      setFocus('mytext');
</script>

When a user types some text and hits the Enter key, the following code gets executed:

HTML
<input type="text" class="mytext" 
       id="mytext" onkeydown="captureReturn(event)">
JavaScript
// Capture the enter key on the input box and post message
function captureReturn( event )
{
      if(event.which || event.keyCode)
      {
            if ((event.which == 13) || (event.keyCode == 13)) 
            {
                  postText();
                  return false;
            }
            else {
                  return true;
            }
      }     
}
function postText()
{
      rnd++;
      //Clear text box first
      chatbox = getElement( "mytext" );
      chat = chatbox.value;
      chatbox.value = "";
      
      //get user GUID from url
      userid = location.search.substring( 1, location.search.length );
      
      //construct Ajax Server URL
      url = 'Server.aspx?action=PostMsg&u=' + userid + '&t=' +
             encodeURIComponent(chat) + '&session=' + rnd;
      
      //Create and set the instance 
      //of appropriate XMLHTTP Request      object
      req = getAjax();
      
      //Update page with new message
      req.onreadystatechange = function(){
      
            if( req.readyState == 4 && req.status == 200 ) {
                  updateAll();
            }
      }
      
      req.open( 'GET', url, true );
      req.send( null );
}

That is all there is to it. Nothing too fancy. Download the sample application and go through the code. The code has been commented properly.

Conclusion

Building a chat room using a Java Applet requires JVM to be installed on the user’s PC. Using an ActiveX control has security issues attached to it. With the introduction of AJAX, you could build an HTTP based chat-room that does not require the user to download or install software. It is also easy to create and maintain.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
United States United States
Dahan Abdo is a Software Project Manager. He is an early adapter of the .NET technology. He has been developing Web applications and services since .NET beta1. He enjoys programming in C# and developing web applications. He also enjoys working on large and complex projects using innovative design and cutting edge technologies.
He recently became a Microsoft Certified Applications Developer (MCAD).
Dahan Abdo is also a three time Microsoft Most Valuable Professional (MVP).

Comments and Discussions

 
QuestionProblems with ChatEngine.cs Pin
Member 1459325928-Oct-21 11:41
Member 1459325928-Oct-21 11:41 
Questionit's very useful and amazing ! but... Pin
Member 106814069-Jun-14 10:28
Member 106814069-Jun-14 10:28 
QuestionSecurity Pin
lostandconfused123411-Dec-13 9:15
lostandconfused123411-Dec-13 9:15 
Questionneed a logout button Pin
AZAD CHOUHAN24-May-13 2:45
AZAD CHOUHAN24-May-13 2:45 
GeneralMy vote of 5 Pin
kvreddy14-Feb-13 9:44
kvreddy14-Feb-13 9:44 
QuestionI want to add private chat please Pin
Member 305320118-Aug-12 4:11
Member 305320118-Aug-12 4:11 
QuestionPermission to use the software Pin
Lee Zhong Zheng24-Jul-12 20:45
Lee Zhong Zheng24-Jul-12 20:45 
QuestionTrust level required for UChat Pin
Dannoman123428-Jun-12 1:14
Dannoman123428-Jun-12 1:14 
QuestionSmiley's Pin
anholm14-Jun-12 10:38
anholm14-Jun-12 10:38 
GeneralPermission to use code Pin
jessanthony21-Feb-12 4:49
jessanthony21-Feb-12 4:49 
QuestionLogout button code solution...links are not working :( no private chat is there :( Pin
Liju T Babu9-Feb-12 19:50
Liju T Babu9-Feb-12 19:50 
AnswerRe: Logout button code solution...links are not working :( no private chat is there :( Pin
VICK10-Dec-13 0:52
professional VICK10-Dec-13 0:52 
Questionold chat history not removed Pin
chandan11119-Jan-12 23:03
chandan11119-Jan-12 23:03 
General.NET based voice conference room Pin
Gira Palmer3-Jun-11 3:38
Gira Palmer3-Jun-11 3:38 
GeneralMy vote of 5 + a few improvements [modified] Pin
bradut29-Mar-11 12:14
professionalbradut29-Mar-11 12:14 
GeneralRe: My vote of 5 + a few improvements [modified] Pin
thatraja27-Dec-11 17:33
professionalthatraja27-Dec-11 17:33 
GeneralRe: My vote of 5 + a few improvements [modified] Pin
bradut27-Dec-11 18:37
professionalbradut27-Dec-11 18:37 
GeneralMy vote of 4 Pin
pgsaran887820-Jul-10 0:11
pgsaran887820-Jul-10 0:11 
Generalexecution problem Pin
jeremyblue13-Jul-10 6:29
jeremyblue13-Jul-10 6:29 
GeneralLeaving the chat Pin
quitstalin27-May-10 9:51
quitstalin27-May-10 9:51 
QuestionHow to convert this App. in Multiple Chat Rooms Pin
hiteshmca0717-Apr-10 1:07
hiteshmca0717-Apr-10 1:07 
GeneralMultiple Chat Rooms Pin
adiput24-Feb-10 20:26
adiput24-Feb-10 20:26 
QuestionHow to get to work in master pages ?. Pin
Member 359855130-Aug-09 2:28
Member 359855130-Aug-09 2:28 
GeneralNobody In Code Project Implemented one to one chat using asp.net Pin
ajay_zenta14-Aug-09 6:43
ajay_zenta14-Aug-09 6:43 
GeneralRe: Nobody In Code Project Implemented one to one chat using asp.net Pin
saini arun24-Mar-10 22:07
saini arun24-Mar-10 22:07 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.