Articles   Dev Forums   Personalize   Favorites   Member Login        Active Users:  91
DevASP - ASP and XML Articles, Samples, Toturials, Sample Chapters and resources for Developers Sunday, October 12, 2008
Home
Articles & Samples
Dev Search
Dev Forum
Add a Listing
Sample Chapters
Directory Feed
Link to US
Contact

Search Directory
Applications
Articles & Samples
Components
Community
Database
Developer Sites
Downloads
Hosting Services
Introduction
Knowledge Base
Sample Chapters
WebCasts

ESET
ASP Directory
Applications
Articles & Samples
Components
Developer Sites
Knowledge Base
Sample Chapters
WebCasts
XML Directory
Applications
Articles & Samples
Developer Sites
Error, Bugs & Fixes
Downloads
Introduction
Knowledge Base
Sample Chapters
WebCasts

FREE 12 month online training for ASP.NET & MS Expression Studio and a Free copy of MS Expression Web with Windows Server Purchase

Home > Search > Articles & Samples > ASP > Application Making > Chat
Search
DevASP

What's New
What's Hot

Writing ASP Chat using JavaScript and XML (Part 4)       
Total Hits: 254  |  Today: 0 Author: Alexander Fedorenko.       Rating:  
Read Reviews | Write Review |              Your Rating: 

This part explains steps for providing multiply rooms to existent chat application....

HTML Chat script       
Total Hits: 467  |  Today: 0 Author: Chris Hembrow       Rating:  
Read Reviews | Write Review |              Your Rating: 

This chat applicatsion is an HTML chat engine, no visible refresh, multiple users allowed, and very easy set up. All scripts, components and information on this website are freely available for your use....

ASP Chatroom (LiquidChat II)       
Total Hits: 587  |  Today: 0 Author: Greg Diamond       Rating:  
Read Reviews | Write Review |              Your Rating: 

LiquidChat II is a database-driven ASP chat room which includes many features:List of active users,Ability to send Private Messages,Ability to change "Status" message,Ability to change font color/type/size,Ability to create new rooms 'on the fly'....

Chat program       
Total Hits: 381  |  Today: 0 Author: Bhushan.       Rating:  
Read Reviews | Write Review |              Your Rating: 

This handy and simple code snippet from Bhushan Paranjpe offers a chat program that uses arrays....

ASP Chat System       
Total Hits: 272  |  Today: 0 Author: Antonio Rodrigues       Rating:  
Read Reviews | Write Review |              Your Rating: 

Antonio Rodrigues offers up another Chat/Instant Messaging System for use with your personal web site....

Simple ASP-Chat        
Total Hits: 245  |  Today: 0 Author: Marc Ripin       Rating:  
Read Reviews | Write Review |              Your Rating: 

Simple Chat app that uses Global.asa but no DB. There is no Administration or 'kickout' feature just text after text. You can add some logging and other features easily. Text are writen in Finish but easy to change (there are just few)....

Complete ASP Chat Application       
Total Hits: 526  |  Today: 0 Author: Brian Gillham       Rating:  
Read Reviews | Write Review |              Your Rating: 

ASPChatWorx is a chat application implemented entirely in ASP and is ready to run immediately. All you need to do is create a virtual directory for the application, and copy the files from the .zip file into that directory. Refer to the readme.txt file for more information....

Ready to use CHAT script       
Total Hits: 254  |  Today: 0 Author: Joe Zarzandi       Rating:  
Read Reviews | Write Review |              Your Rating: 

Just copy and paste the code and provide your visitors with a chat. It will work immediatelly in regular NT servers with ASP...

Simple ASP Chat       
Total Hits: 454  |  Today: 0 Author: Sanjay Shetty       Rating:  
Read Reviews | Write Review |              Your Rating: 

To start with create a simple form where the user can type some text. Whatever the client types in this form has to be appended to a text file, this text file will then be displayed to the client. The actual writing to the text file is done with an Active Server Script. By including the meta tag for refreshing the page will be refreshed every 5 seconds. This concept is called client pull. This is because it is the clients responsiblity to read the meta tag and call for a refresh every five secon...

A Web-Based Chat Room       
Total Hits: 113  |  Today: 0 Author: http://www.authors.aspalliance.com       Rating:  
Read Reviews | Write Review |              Your Rating: 

This is fun. It's a chat application, built with HTML, ASP, and a dash of client-side JavaScript. No software to install, no upgrades to download; a totally thin client.The key to making this so simple is the use of Application variables. Not only is data storage as simple as reading and writing from the Application() collection, but since everything on the server is in memory, processing is lightning-fast.I plan to add on to this one, so check back regularly....

Writing ASP Chat using JavaScript and XML (Part 4)       
Total Hits: 223  |  Today: 0 Author: Alexander Fedorenko       Rating:  
Read Reviews | Write Review |              Your Rating: 

This part explains steps for providing multiply rooms to existent chat application. This type of chat is most difficult to implement. Extra attention should be applied to each detail. We need to decide how to divide users and messages by rooms. The first approach comes from relational theory - to each message and each session, we add a new field, which uniquely identifies a room. Or simply provide one-to-many relationships between the Rooms table and Messages table, Rooms table and Sessions tabl...

Writing ASP Chat using JavaScript and XML (Part 3)       
Total Hits: 225  |  Today: 0 Author: Alexander Fedorenko       Rating:  
Read Reviews | Write Review |              Your Rating: 

Here, I added persistence of user information and registration. Upgrading User-friendly chat to Registrable chat requires adding persistent user information. New users must be able to register. Existing users can login using a username and password....

Writing ASP Chat using JavaScript and XML (Part 1)       
Total Hits: 235  |  Today: 0 Author: Alexander Fedorenko       Rating:  
Read Reviews | Write Review |              Your Rating: 

One of the popular activities on the web is taking part in web chats - collaborative applications, which provide the mechanism to take part in a dialogue between two or more users in real time. A useful addition to any web site is the ability to group users by interests in separate chat rooms. Some sites allow participation in chat without registration, but most do not, as registering can provide a safer chat and more precise controlling....

Database Driven ASP Chat Application Tutorial     Price: Free   
Total Hits: 348  |  Today: 0 Author: John Case       Rating:  
Read Reviews | Write Review |              Your Rating: 

A comprehensive 12 parts tutorial that will show you step by step how to build from scratch an database driven asp chat application. On-line demo provided and full source code zip archive available for download. Ready to be used on any Windows IIS based web hosting....

ASP Chat       
Total Hits: 284  |  Today: 0 Author: Kaustav Acharya       Rating:  
Read Reviews | Write Review |              Your Rating: 

ASP Chat is an interactive VBScript/ASP chat script that works almost the same as a Java Applet one. Even though it is not quite as good as the Yahoo!(R) Chat rooms.
...

ASP Chat       
Total Hits: 279  |  Today: 0 Author: Kaustav Acharya       Rating:  
Read Reviews | Write Review |              Your Rating: 

The purpose of this code is to let users talk on an ASP website. It creates a good impression having your very own chat room....

Writing ASP Chat using JavaScript and XML (Part 2)       
Total Hits: 202  |  Today: 0 Author: Alexander Fedorenko       Rating:  
Read Reviews | Write Review |              Your Rating: 

Next level of chatting is User-friendly chat. In addition to previous functionality, this provides active users list. Quantity of users on start page is also required. It has logoff possibility and expiration of inactive users after specified timeout....

Chat Using ASP & XML       
Total Hits: 302  |  Today: 0 Author: Mohamed Najeeb       Rating:  
Read Reviews | Write Review |              Your Rating: 

This article assumes that you are familiar with ASP, XML and HTML. Using this chat system, we can chat how we conventionally chat, in public as well as private modes. Even though I've implemented most of the conventional features such as unique nick names, the reader is welcome to incorporate any other features they require. Please note that I didn't worry much about memory usage on the server side and the code that allots user ids obviously needs improvement. Let us talk about the overall funct...

Old School Chat       
Total Hits: 296  |  Today: 0 Author: Landon Ritchie       Rating:  
Read Reviews | Write Review |              Your Rating: 

This is a neato little chat i made. that is quite compadible with brinkster. cause i have had nothing but trouble trying to get code snips to work correctly on brinkster...

wASP_Chat       
Total Hits: 221  |  Today: 0 Author: Midnight Trojan       Rating:  
Read Reviews | Write Review |              Your Rating: 

This is an extremely powerful and a very simple ASP chat program. Try it out, you won't regret it....


1  2  Next >> 


DevASP - Privacy - Disclaimer
Copyright © 2008 DevASP.com