Asked by:
chat application in asp.net c#

Question
-
User1574312291 posted
hello please provide some source code of chat application
Friday, April 20, 2018 2:04 PM
All replies
-
Friday, April 20, 2018 2:34 PM
-
User61956409 posted
Hi syedtalib46,
You can try to implement real-time chat functionality via WebSocket technology.
Besides, As ignatandrei suggested, ASP.NET SignalR is a library for ASP.NET developers to implement real-time web functionality, you can get started and find some examples in ASP.NET SignalR official site.
Note: this blog shows how to build a simple chat app using ASP.NET WebAPI and ASP.NET’s new support for WebSockets in .NET 4.5, you can check it.
With Regards,
Fei Han
Sunday, April 22, 2018 7:32 AM -
User1623409651 posted
Hi,
Refer the below links
http://www.codeproject.com/Articles/8307/Simple-Chat-Application-in-ASP-NET
http://code.msdn.microsoft.com/CSASPNETAJAXWebChat-c4c9b8fe
http://www.c-sharpcorner.com/uploadfile/0b8108/simple-chat-application-in-Asp-Net/
http://www.codeproject.com/Articles/75135/Chat-Application-in-ASP-NET-Using-AJAX-Pop-up-Wind
http://aspalliance.com/1217_Building_an_AJAX_Based_Web_Chatting_Application_using_ASPNET_20.1
http://devlopingskills.blogspot.com/2016/11/create-simple-chat-web-application-in.html
Hope it helps
Thanks
Tuesday, April 24, 2018 10:56 AM -
User-1780421697 posted
As every one suggested that using SignaR for real time communication is one of the possible abstract way to build real time chat application where you can also have scalability feature like use of Redis. There is also some other options like using web socket programming and messaging queue brokers like RabbitMQ or Redis depend on the requirments
https://www.c-sharpcorner.com/article/signalr-chat-app-with-asp-net-webform-and-bootstrap/
Wednesday, April 25, 2018 5:43 AM