Click here to Skip to main content
15,888,610 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
i have a website application in which user can send msg to each other but i want they can chat also like social networking sites..
Posted

 
Share this answer
 
A simple Google or CP search could had given you these and many more. Just pick any one that suits you and your need to learn of from here:
CP search result: Chat ASP.NET[^]

Top few of it:
Build a Silverlight 2 Web Chat Application[^]
Building an AJAX based chat room in ASP.NET[^]
WCF / WPF Chat Application[^]
Building an AJAX based chat room in ASP.NET[^]
Simple Chat Application for ASP.NET-1[^]
Simple Chat Application in ASP.NET-2[^]
 
Share this answer
 
ASP.NET
<%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">


<html>
<head>
<title>Sample Chat Application</title>
<style type="text/css">
body {
    background-color: #eeeeee;
    padding:0;
    margin:0 auto;
    font-family:"Lucida Grande",Verdana,Arial,"Bitstream Vera Sans",sans-serif;
    font-size:11px;
}
</style>

<link type="text/css" rel="stylesheet" media="all" href="css/chat.css" />
<link type="text/css" rel="stylesheet" media="all" href="css/screen.css" />

<!--[if lte IE 7]>
<link type="text/css" rel="stylesheet" media="all" href="css/screen_ie.css" />
<![endif]-->

</head>
<body>
<div id="main_container">

<a href="javascript:void(0)" onClick="javascript:chatWith('janedoe')">Chat With Me</a>
<a href="javascript:void(0)" onClick="javascript:chatWith('babydoe')">Chat With You</a>
<!-- YOUR BODY HERE -->

</div>

<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/chat.js"></script>

</body>
</html
>
 
Share this answer
 
v4
Comments
Member 9168862 26-Aug-12 13:46pm    
lkjjhljkjlkjlkj
Chatwing a great free live chat tool. It works on 100's of websites, blogging, and forum platforms, including Wordpress, Blogspot, Facebook and many more.

Chatwing is also Free for unlimited # of users. The other chats charge people.
Check it out:
www.chatwing.com

Any questions? info@chatwing.com
You can email me direct also:
gracepoe45@yahoo.com
 
Share this answer
 
Comments
Member 12251761 16-Feb-16 6:08am    
hey i want create my own chat apllication with database in vb.net

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900