Click here to Skip to main content
15,884,099 members
Articles / Programming Languages / ASP

Writing ASP Chat using JavaScript and XML (Part 1)

Rate me:
Please Sign up or sign in to vote.
4.15/5 (14 votes)
21 Jan 20045 min read 91.2K   2.4K   50  
Step-by-step article about writing web-based chat. This article explains the simplest chat.
<%@LANGUAGE="JAVASCRIPT"%>
<html>
<head>
<title>Toolbar</title>
</head>
<body leftmargin="5" rightmargin="5" topmargin="5" bottommargin="5">
<table width="100%" border="0" cellpadding="0" cellspacing="0">
  <tr> 
    <td width="98" height="69" valign="top">
    <a HREF="help.htm" TITLE="Chat help" target="_blank"><img border="1" src="img/help.gif" width=28 height=28></a> 
    </td>
    <td width="100%">&nbsp;</td>
    <td width="468" valign="top"><a HREF="http://devplanner.com" TITLE="Banner place" target="_blank"><img border="0" SRC="img/banner.gif" WIDTH="468" HEIGHT="60"></a></td>
  </tr><tr><td height="1"><img src="img/1x1.gif" alt width="98" height="1"></td>
  <td></td><td><img src="img/1x1.gif" alt width="468" height="1"></td></tr>
</table>
</body>
</html>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Ukraine Ukraine
Alexander Fedorenko is a professional C++ developer since 1996. He completed many custom and shareware projects. One of the successful projects is DevPlanner - tool for personal planning and time management.

Comments and Discussions