MVC :: Chat Application Intergrated In The Web Page?

Mar 11, 2010

I am developing an application in asp.net mvc where i need to have Chat application intergrated in the web page. The chat application should be able to support group chat, private chat, simple file transfer and user should be able to create their own rooms. where i can buy a simple chat application with above functionalities. I need it immediately.or how to create my own application. The technology to use or just any idea to start, buying asp.net chat application with above functionalities is the best option.and most important i should be able to integrate chat application in my existing MVC project. We are using ASP.NET MVC, Microsoft SQL Server 2005, Linq To Sql as database interaction tech and C#.

View 1 Replies


Similar Messages:

Web Forms :: Develop Web Based Chat Application With Private And Group Chat Option

Sep 5, 2012

I want to develope web based chat application for an organization

My requirements are,

1. Group chat
2. Private chat
3. All chat information will save in sql server
4. if user minimize the browser,it will blink like gtalk and face book

View 1 Replies

Architecture :: How To Save A Large Data Of Chat Room In Chat Application

Nov 3, 2010

I'm developing chat application on asp.net mvc, in my app, user can create room and invite other join to chat, but don't need to save chat room information.So, I designed to save all chat message ,room information and user info in Session and clear it when owner close the room.I'm worry about stressing server when I save alot of data (include room info, user info, and message) in Session if there are up to 5000 rooms created and alot of messages transfered in that room.Is my solution good enough ? is it ok to save in Session ?

View 3 Replies

Web Forms :: Gmail Like Chat Application - Building An Instant Messenger Application For The Selected User

Feb 22, 2010

I have a requirement for building an instant messenger application for the selected user.

I have googled for the solution but without any sucess.My requirement is once a user initiates a chat with another user,the another user needs to get a popup of the chat window,where the two users can start chatting.

View 4 Replies

How To Add Chat To Web Application

Nov 22, 2010

I want to add chat to my web application. some readily available modules or add ons? The chat function will be one to one such as Facebook.

View 3 Replies

Developing Chat Application Using Vb.net?

Feb 12, 2010

i am developing chat application using vb.net and asp.net where i am having a div tag inside which i am displaying the messages posted by the online users what my problem is when the messages are more and exceeds the height of the div tag then i am not comfortable to view the previous messages because i have set the scroll bar position to always to be pointed to bottom.

[code]....

View 1 Replies

How To Develop And Integrate A Chat Application

Jan 29, 2010

How can I develop a chat application using asp.net or How to integrate any chat api with asp.net application.

View 5 Replies

Web Forms :: How To Implement A Chat Application In C#

Dec 27, 2010

I need to implement a chat application in my asp.net C# used Web Application. I am looking a 1 to 1 chat . Here i am users and i need to chat those users with other ones.

View 2 Replies

How To Add Typing Notification To Chat Application

Apr 13, 2010

I am creating a chatting application, where I want to show typing notifications in private chat.i.e If two users are chatting, when the user is typing message I want to show in chat window of other user that "userName is typing" in the status bar

View 3 Replies

Web Forms :: Implement Chat In Web Application

Mar 20, 2013

I have written below the requirement of my client

"We should also have an option under the contacts tab, for a chat option .The idea behind it is that if a user is looking to communicate with a staff person they should be able to open a chat session and start a typing their questions and/or concerns. While building the chat option, the chats should be logged for certain period of time and there should be an option of retrieving particular chat sessions as needed."

What is the best way to implement this ? I prefer  jquery plugin for implementing the above task () ?  I am using asp.net 2.0.Is there any need to update to 3.5 to achieve the above task ?

View 1 Replies

Data Controls :: Save Chat Messages To Database Using SignalR Chat

May 7, 2015

I had create an application to allow user to register new project.Manager will chat with user base on the project ID(chat room id = Project ID) and store this conversation to database.

Example: User A register project A, other user cannot join the chat room A.

View 1 Replies

VS 2008 - Unable To Build A Chat Application

Apr 7, 2010

I found the tutorial below to build a chat application for asp.net which fulfilled most of my requirements, i.e. written in vb and made use of database, however the second part is missing. [URL]

I was hoping someone may be able to point me in the direction the original author intended to extend this to cover multi rooms and hopefully multi users?

View 1 Replies

How To Create Small Chat Application Between Two Users

Oct 3, 2010

I want to create small chat application between two users.

Users should Login if they are not logged in they should be registered.

View 3 Replies

How To Add Chat Application Like Facebook In Social Networking Website

Oct 27, 2010

how can i add chat application like facebook in my social networking site?

i need to add chat application in my project just like facebook chat

how can i create in asp.net?

View 24 Replies

How To Create An Application That Combines A Website To A Chat Program

May 4, 2010

So I am trying to create and application that combines a website to a chat program.

Essentially what I want is this

Users to be able to go to the website and look at data

if they want to add data they can do that on the website

based on this data, a message pops up on the appropriate agents PC

the agent can then forward the request or accept the request and type in a message/data in that same pop up window and send it to the website which would update the website.

I have too many options to choose from and I am very confused.I believe for the agent side(chat) WCF would be good, but not sure about the website side.Should i use dynamic data webpage orwcf data services?

View 2 Replies

MVC :: Save Chat Room Data In Application Variable Or DB, Where Is Better?

Nov 4, 2010

My application is MVC Web App Chat Room , it supports following features:1.Create/Join/Close room 2.Send message in room (just live message, offline message might be supported in future)I have done logic for application, but I'm considering where to save chat room data (message,room information, and users in room) ? I see there are 2 options:1. Application variable2. Using file or database-What if I saved in Application variable:In case of there are 2000 rooms and 10000 users online, mean I have to persistence in Application variable (actually in RAM memory) information of 2000 rooms, more than 10000 message (text), these numbers might be increased by second if there are more users online in real time. and what's next ? I don't know what will happen to server, crash ? or my web app will be terminated ? whatever I don't want both results !

-What if I saved in file or DB (i.e: SQL Server DB) Because of web application, clients have to send request every 1 second to fetch data (messages and user list in room). So in case of there are 2000 rooms and 10000 users online, means they will make 10000 requests every 1 second to DB. I don't know what will happen to DB, there are a lot of connections and in EVERY 1 second, can DB still be alive to serve request ?I don't know where saving is good now because both seem are bad solution

View 2 Replies

Implement The Live Chat - Support Type In Web Application?

Jun 21, 2010

I have to implement the Live chat - support type in my asp.net web application

I m working framework 3.5

How can i do this.

View 1 Replies

Save Chat Room Data In Application Variable Or DB?

Nov 4, 2010

My application is Web App Chat Room , it supports following features:

1.Create/Join/Close room

2.Send message in room (just live message, offline message might be supported in future)

I have done logic for application, but I'm considering where to save chat room data (message,room information, and users in room) ? I see there are 2 options:

1. Application variable

2. Using file or database

-What if I saved in Application variable: In case of there are 2000 rooms and 10000 users online, mean I have to persistence in Application variable (actually in RAM memory) information of 2000 rooms, more than 10000 message (text), these numbers might be increased by second if there are more users online in real time. and what's next ? I don't know what will happen to server, crash ? or my web app will be terminated ? whatever I don't want both results!

-What if I saved in file or DB (i.e: SQL Server DB) Because of web application, clients have to send request every 1 second to fetch data (messages and user list in room). So in case of there are 2000 rooms and 10000 users online, means they will make 10000 requests every 1 second to DB. I don't know what will happen to DB, there are a lot of connections and in EVERY 1 second, can DB still be alive to serve request ?

I don't know where saving is good now because both seem are bad solution :(. What is your opinion ?

View 1 Replies

Built Chat Application Using Asp.net3.5,sqlserver2005,ajax?

Mar 21, 2011

i need to built chat application using asp.net3.5,sqlserver2005,ajax..

where to get easy source or idea to develope from the scratch...

View 4 Replies

Web Forms :: Client And Server In WCF Chat Application For File Transfer

May 29, 2012

I need full code for client and server to transfer files. gone through net but didn't get through.

View 1 Replies

Security :: IIS6 And Intergrated Windows Authentication

Jul 31, 2010

I am having an issue with IIS6 and intergrated windows authentication that is driving me nuts, and I am hoping one of you guys can point me in the right direction.

I have written an ASP.net 3.5 application, and have installed it on a Windows 2003 R2 SP2. I have turned on intergrated windows authentication on, turned off anonymous access. using local host on the server itself I have no problems, it works, picks up the NTlogin.

However when I go to a clients machine (logged in as one of the users of the domain) and try to access the website
http://10.1.1.22/ I get asked for a username and password. If i enter a valid user name and password then I have no probelms. The NTlogin is picked up, application works.

But my issue is why does it come up with a username and password at all? shouldn't it just know this user is already in the domain, just go straight through to iis? how can i get rid of this? I have read multiple forums about server delegation etc... metabase.xml... nothing seems to work

View 4 Replies

JQuery :: Listview With Grouping And LightBox Intergrated?

Feb 15, 2011

I am using master page and content page approach. i could mange to show image from folder in listview whose Url are saved in my Database.the code i use:

[Code]....

I trying to use the appraoch which is shown in the link.http://codeasp.net/blogs/raghav_khunger/microsoft-net/1289/use-lightbox-to-show-images-whose-paths-are-stored-in-databasebut i failed to do.Can anybody guide me how to impelment lightbox in above example with my listview code i am using.

View 5 Replies

Web Forms :: Chat Application - Display Username And Status (Image) In A Single Row

Jul 24, 2013

I am developing a chat application. What Ii need is... I have to display user name and status(iam taking an image).. It should be as in gtalk in a single row i have to get name and that image. I need like wat i have to take in view page like div/table and how can we bind them in jQuery..

View 1 Replies

C# - Asynchronous File Transfer In .Net Chat Application (peer To Peer)

Oct 27, 2010

I've developed a chat application using WCF/ASp.net. I want to asynchronously transfer a file from one chat user to another chat user. What is best approach for this?here are my insights/doubts

View 2 Replies

Web Forms :: Peer To Peer Connection Chat Application

May 7, 2015

I want to make a peer to peer application in C# to make chat application ....

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved