Click here to Skip to main content
15,884,794 members
Articles / Web Development / ASP.NET
Article

Simple chat application for ASP.NET

Rate me:
Please Sign up or sign in to vote.
4.70/5 (84 votes)
26 May 20041 min read 530.8K   30.9K   175   86
Very easy Web application of a chat room for Internet Explorer 5+ in ASP.NET.

Sample Image - SimpleChat.jpg

Introduction

And why not, how to create an easy chat room for your web site? Well, the best way is to use a nice database to store messages; however, for demo purposes, I'll use a static array. I know, you won't be able to use it in your web farm. Take this article as the concept, not as a solution. This simple web chat program is intended to work in any browser supporting <iFrame>.

Also, you can select multiple chat rooms. Why not extend from there and more from channel to channel.

Background

Some months ago, I was looking for a complete on-line customer service ASP.NET control to make my life easier, did not find anything interesting, so I built my own.

Using the code

Replace this class if you are using a database to save the messages:

C#
public class Chat
{
        static protected ArrayList pArray = new ArrayList();
        

        static public void AddMessage(string sDealer, 
                              string sUser, string sMsg)
        {
            string sAddText = sDealer + "~" + sUser + "~" + sMsg;
            pArray.Add(sAddText);

            if ( pArray.Count > 200 )
            {
                pArray.RemoveRange(0,10);
            }
        }

        static public string GetAllMessages(string sDealer)
        {
            string sResponse = "";

            for (int i=0; i< pArray.Count; i++)
            {
                sResponse = sResponse + 
                    FormatChat(pArray[i].ToString(), sDealer);
            }

            return(sResponse);
        }

        static private string FormatChat(string sLine, string sDealer)
        {
            int iFirst = sLine.IndexOf("~");
            int iLast = sLine.LastIndexOf("~");

            string sDeal = sLine.Substring(0, iFirst);
            if ( sDeal != sDealer)
                return("");

            string sUser = sLine.Substring(iFirst+1, iLast-(iFirst+1));
            
            string sMsg = sLine.Substring(iLast+1);

            string sRet = "" + sUser + ": " + sMsg + "";

            return(sRet);
        }
    }

The above code reads and writes from the static array like in a database. The code only allows having 200 messages in the array, after that it deletes the top 10 at the time.

The Chat page is pretty simple; this is the code behind aspx.cs:

C#
public class ChatWin : System.Web.UI.Page
    {
        protected System.Web.UI.WebControls.TextBox TB_ToSend;
        protected System.Web.UI.WebControls.Button BT_Send;
    
        private void Page_Load(object sender, System.EventArgs e)
        {
            if ( Page.IsPostBack == false )
            {
                if ( Request.Params["Channel"] != null )
                    Session["ChatChannel"] = 
                       Request.Params["Channel"].ToString();
                else
                    Session["ChatChannel"] = "1";
                
            }
        }

        #region Web Form Designer generated code
        override protected void OnInit(EventArgs e)
        {
            //
            // CODEGEN: This call is required by the ASP.NET Web Form Designer.
            //
            InitializeComponent();
            base.OnInit(e);
        }
        
        /// <SUMMARY>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </SUMMARY>
        private void InitializeComponent()
        {    
            this.BT_Send.Click += 
               new System.EventHandler(this.BT_Send_Click);
            this.Load += new System.EventHandler(this.Page_Load);

        }
        #endregion

        public string GetChatPage()
        {
            return("TheChatScreenWin.aspx");
        }

        private void BT_Send_Click(object sender, System.EventArgs e)
        {
            string sChannel = "";
            string sUser = "";

            if ( Request.Params["Channel"] != null )
                sChannel = Request.Params["Channel"].ToString();
            else
                sChannel = "1";

            if ( Request.Params["User"] != null )
                sUser = Request.Params["User"].ToString();
            else
            {
                Random pRan = new Random();
                int iNum = pRan.Next(9);
                sUser = "Annonymouse" + iNum;
            }

            
            if ( TB_ToSend.Text.Length > 0)
            {
                PageModule.Chat.AddMessage(sChannel,
                    sUser,
                    TB_ToSend.Text);
                
                TB_ToSend.Text = "";        
            }
        }
    }

When the SEND button is clicked, it calls the function AddMessage that adds a row into the end of the static array.

The page inside the <iframe> tag refreshes every 4 seconds without refreshing your actual page.

Points of Interest

The magic? None, a simple request of the second page into the <iFrame>. So, Internet Explorer takes care of everything for us to read the static array.

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
Al is just another Software Engineer working in C++, ASp.NET and C#. Enjoys snowboarding in Big Bear, and wait patiently for his daughters to be old enough to write code and snowboard.

Al is a Microsoft ASP.NET MVP

Blog

Comments and Discussions

 
Generali want simple chat application in asp.net using vb Pin
karthikeyan_caleb16-Apr-07 19:05
karthikeyan_caleb16-Apr-07 19:05 
Generalplease... Pin
choorakkuttyil22-Mar-07 21:03
choorakkuttyil22-Mar-07 21:03 
GeneralRe: please... Pin
Moh.Shafe3i31-Mar-08 1:10
Moh.Shafe3i31-Mar-08 1:10 
GeneralRe: please... Pin
HarshadKamble7-May-11 7:25
HarshadKamble7-May-11 7:25 
Generalusing chat On PCs connected with Lan Pin
niting8520-Mar-07 19:00
niting8520-Mar-07 19:00 
Generalabout chat Pin
rajakvl200419-Dec-06 20:40
rajakvl200419-Dec-06 20:40 
Generalworking with vwd2005 chat not in C# code Pin
bernie_01124-Oct-06 20:18
bernie_01124-Oct-06 20:18 
GeneralHi Albert Pascual, I have 2 doubts Pin
rajasekarbtech12-Sep-06 3:47
rajasekarbtech12-Sep-06 3:47 
1.After ChatWin.aspx pageload how the ChatScreenWin.aspx called, i think there is no direct call. i guess i may due to the session created there, please make it clear.

2. Can you please Explain this line:

Response.Write( "" );

what is the need for '\'.



Dude

GeneralRe: Hi Albert Pascual, I have 2 doubts Pin
littleheartzzz19-Dec-06 1:56
littleheartzzz19-Dec-06 1:56 
Questionhi Pin
renatofixer21-Aug-06 13:02
renatofixer21-Aug-06 13:02 
Questionhow to show that the user is online Pin
jasine7-Aug-06 17:33
jasine7-Aug-06 17:33 
GeneralHey Al...Problem with coding Pin
lehya9-Jul-06 8:02
lehya9-Jul-06 8:02 
Questionhow to build a simple chat application Pin
mai20065-Jul-06 21:15
mai20065-Jul-06 21:15 
GeneralRefresh Pin
sobriquet24-Apr-06 2:32
sobriquet24-Apr-06 2:32 
GeneralRe: Refresh Pin
littleheartzzz19-Dec-06 1:58
littleheartzzz19-Dec-06 1:58 
Questioni use ur chat in my graduation project in Egypt Pin
coolshad20-Apr-06 5:17
coolshad20-Apr-06 5:17 
AnswerRe: i use ur chat in my graduation project in Egypt Pin
littleheartzzz19-Dec-06 2:00
littleheartzzz19-Dec-06 2:00 
GeneralPresentation Problem Pin
Devbas13-Apr-06 3:57
Devbas13-Apr-06 3:57 
Generalreplace a database instead of array Pin
mak160015-Mar-06 9:17
mak160015-Mar-06 9:17 
GeneralRe: replace a database instead of array Pin
Albert Pascual16-Mar-06 6:51
sitebuilderAlbert Pascual16-Mar-06 6:51 
Generalchat source code Pin
lakshmi patil11-Dec-05 20:28
lakshmi patil11-Dec-05 20:28 
GeneralRe: chat source code Pin
enjoycrack13-Dec-05 7:53
enjoycrack13-Dec-05 7:53 
GeneralVB.NET Pin
Anonymous25-Aug-05 12:52
Anonymous25-Aug-05 12:52 
GeneralRe: VB.NET Pin
enjoycrack13-Dec-05 7:58
enjoycrack13-Dec-05 7:58 
GeneralRe: VB.NET Pin
Jack130214-Apr-07 5:11
Jack130214-Apr-07 5:11 

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.