Click here to Skip to main content
15,898,903 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Dear Friends,

I want create Chat room in my webpage.
Where user wants to interact with customer.
Once the conversation is completed, a mail has to be generated with complete conversation.
Can any one give me idea how to implement this.
Posted

1 solution

Start with google - there are loads and loads of examples of chat room software out there. Pick one you like, and use it. After that, all you have to do is ensure that the conversation is stored somewhere while it is going on - Cookies, Session or Database depending on how permanent a record you want - and then generate an email at the end and send it.

The only specific bit I can give you is the email - which is a simple method: Sending an Email in C# with or without attachments: generic routine.[^]
The rest of your question is too vague and open to be answered specifically.
 
Share this answer
 
Comments
Arunprasath Natarajan 6-Jul-12 2:30am    
Thank you for your suggestion, But is it we have create that chat room only in Windows application, because I like to create in Web page.
OriginalGriff 6-Jul-12 2:48am    
No, web is fine - there are thousands of web based chat room examples out there. Just go looking. I assumed you were web based, which is why I suggested Cookies, and Session - these are web only objects.
Arunprasath Natarajan 6-Jul-12 3:06am    
Okay ill check and if any issue then ill get back to you.

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