asp tutorials, asp.net tutorials, sample code, and Microsoft news from 15Seconds
Data Access  |   Troubleshooting  |   Security  |   Performance  |   ADSI  |   Upload  |   Email  |   Control Building  |   Component Building  |   Forms  |   XML  |   Web Services  |   ASP.NET  |   .NET Features  |   .NET 2.0  |   App Development  |   App Architecture  |   IIS  |   Wireless
 
Pioneering Active Server
 Power Search





Active News
15 Seconds Weekly Newsletter
• Complete Coverage
• Site Updates
• Upcoming Features

More Free Newsletters
Reference
News
Articles
Archive
Writers
Code Samples
Components
Tools
FAQ
Feedback
Books
Links
DL Archives
Community
Messageboard
List Servers
Mailing List
WebHosts
Consultants
Tech Jobs
15 Seconds
Home
Site Map
Press
Legal
Privacy Policy
internet.commerce














internet.com
IT
Developer
Internet News
Small Business
Personal Technology

Search internet.com
Advertise
Corporate Info
Newsletters
Tech Jobs
E-mail Offers

HardwareCentral
Compare products, prices, and stores at Hardware Central!

Simple ASP Chat
By Sanjay Shetty
Rating: 3.1 out of 5
Rate this article


  • email this article to a colleague
  • suggest an article

    Creating the Main Form


    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.

     	<FORM method="post" action="chat.asp">
    <Input type=text value="" size="35" name="txtbox">
    <Input type=submit value="GO">

    Refreshing the Page

    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 seconds.

    <HEAD>
    <META http-equiv="refresh" content="5">
    </HEAD>

    , The form for submitting the data and the page for reading the text are on two different pages. In order to combine them we put both pages with in a frame. This allows the user to easy type and read the responses without being interrupted., Since the above form is in a file called chat.asp and the form posts to chat.asp, the form post to itself. To handle the output of the post you need some Active Server Code.

    <%

    textstr=Request.Form("txtbox")
    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    OutStream.Write ipaddr
    OutStream.WriteLine textstr & "<BR>"
    Set OutStream = Nothing
    %>

    , The form for submitting the data and the page for reading the text are on two different pages. In order to combine them we put both pages with in a frame. This allows the user to easy type and read the responses without being interrupted., Since the above form is in a file called chat.asp and the form posts to chat.asp, the form post to itself. To handle the output of the post you need some Active Server Code.

    <%

    textstr=Request.Form("txtbox")
    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    OutStream.Write ipaddr
    OutStream.WriteLine textstr & "<BR>"
    Set OutStream = Nothing
    %>

    , , The form for submitting the data and the page for reading the text are on two different pages. In order to combine them we put both pages with in a frame. This allows the user to easy type and read the responses without being interrupted., Since the above form is in a file called chat.asp and the form posts to chat.asp, the form post to itself. To handle the output of the post you need some Active Server Code.

    <%

    textstr=Request.Form("txtbox")
    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    OutStream.Write ipaddr
    OutStream.WriteLine textstr & "<BR>"
    Set OutStream = Nothing
    %>

    , The form for submitting the data and the page for reading the text are on two different pages. In order to combine them we put both pages with in a frame. This allows the user to easy type and read the responses without being interrupted., Since the above form is in a file called chat.asp and the form posts to chat.asp, the form post to itself. To handle the output of the post you need some Active Server Code.

    <%

    textstr=Request.Form("txtbox")
    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    OutStream.Write ipaddr
    OutStream.WriteLine textstr & "<BR>"
    Set OutStream = Nothing
    %>

    , , The form for submitting the data and the page for reading the text are on two different pages. In order to combine them we put both pages with in a frame. This allows the user to easy type and read the responses without being interrupted., Since the above form is in a file called chat.asp and the form posts to chat.asp, the form post to itself. To handle the output of the post you need some Active Server Code.

    <%

    textstr=Request.Form("txtbox")
    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    OutStream.Write ipaddr
    OutStream.WriteLine textstr & "<BR>"
    Set OutStream = Nothing
    %>

    , The form for submitting the data and the page for reading the text are on two different pages. In order to combine them we put both pages with in a frame. This allows the user to easy type and read the responses without being interrupted., Since the above form is in a file called chat.asp and the form posts to chat.asp, the form post to itself. To handle the output of the post you need some Active Server Code.

    <%

    textstr=Request.Form("txtbox")
    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    OutStream.Write ipaddr
    OutStream.WriteLine textstr & "<BR>"
    Set OutStream = Nothing
    %>

    , , The form for submitting the data and the page for reading the text are on two different pages. In order to combine them we put both pages with in a frame. This allows the user to easy type and read the responses without being interrupted., Since the above form is in a file called chat.asp and the form posts to chat.asp, the form post to itself. To handle the output of the post you need some Active Server Code.

    <%

    textstr=Request.Form("txtbox")
    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    OutStream.Write ipaddr
    OutStream.WriteLine textstr & "<BR>"
    Set OutStream = Nothing
    %>

    , The form for submitting the data and the page for reading the text are on two different pages. In order to combine them we put both pages with in a frame. This allows the user to easy type and read the responses without being interrupted., Since the above form is in a file called chat.asp and the form posts to chat.asp, the form post to itself. To handle the output of the post you need some Active Server Code.

    <%

    textstr=Request.Form("txtbox")
    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    OutStream.Write ipaddr
    OutStream.WriteLine textstr & "<BR>"
    Set OutStream = Nothing
    %>

    , , The form for submitting the data and the page for reading the text are on two different pages. In order to combine them we put both pages with in a frame. This allows the user to easy type and read the responses without being interrupted., Since the above form is in a file called chat.asp and the form posts to chat.asp, the form post to itself. To handle the output of the post you need some Active Server Code.

    <%

    textstr=Request.Form("txtbox")
    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    OutStream.Write ipaddr
    OutStream.WriteLine textstr & "<BR>"
    Set OutStream = Nothing
    %>

    , The form for submitting the data and the page for reading the text are on two different pages. In order to combine them we put both pages with in a frame. This allows the user to easy type and read the responses without being interrupted., Since the above form is in a file called chat.asp and the form posts to chat.asp, the form post to itself. To handle the output of the post you need some Active Server Code.

    <%

    textstr=Request.Form("txtbox")
    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    OutStream.Write ipaddr
    OutStream.WriteLine textstr & "<BR>"
    Set OutStream = Nothing
    %>

    , , The form for submitting the data and the page for reading the text are on two different pages. In order to combine them we put both pages with in a frame. This allows the user to easy type and read the responses without being interrupted., Since the above form is in a file called chat.asp and the form posts to chat.asp, the form post to itself. To handle the output of the post you need some Active Server Code.

    <%

    textstr=Request.Form("txtbox")
    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    OutStream.Write ipaddr
    OutStream.WriteLine textstr & "<BR>"
    Set OutStream = Nothing
    %>

    , The form for submitting the data and the page for reading the text are on two different pages. In order to combine them we put both pages with in a frame. This allows the user to easy type and read the responses without being interrupted., Since the above form is in a file called chat.asp and the form posts to chat.asp, the form post to itself. To handle the output of the post you need some Active Server Code.

    <%

    textstr=Request.Form("txtbox")
    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    OutStream.Write ipaddr
    OutStream.WriteLine textstr & "<BR>"
    Set OutStream = Nothing
    %>

    , , The form for submitting the data and the page for reading the text are on two different pages. In order to combine them we put both pages with in a frame. This allows the user to easy type and read the responses without being interrupted., Since the above form is in a file called chat.asp and the form posts to chat.asp, the form post to itself. To handle the output of the post you need some Active Server Code.

    <%

    textstr=Request.Form("txtbox")
    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    OutStream.Write ipaddr
    OutStream.WriteLine textstr & "<BR>"
    Set OutStream = Nothing
    %>

    , The form for submitting the data and the page for reading the text are on two different pages. In order to combine them we put both pages with in a frame. This allows the user to easy type and read the responses without being interrupted., Since the above form is in a file called chat.asp and the form posts to chat.asp, the form post to itself. To handle the output of the post you need some Active Server Code.

    <%

    textstr=Request.Form("txtbox")
    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    OutStream.Write ipaddr
    OutStream.WriteLine textstr & "<BR>"
    Set OutStream = Nothing
    %>

    , , The form for submitting the data and the page for reading the text are on two different pages. In order to combine them we put both pages with in a frame. This allows the user to easy type and read the responses without being interrupted., Since the above form is in a file called chat.asp and the form posts to chat.asp, the form post to itself. To handle the output of the post you need some Active Server Code.

    <%

    textstr=Request.Form("txtbox")
    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    OutStream.Write ipaddr
    OutStream.WriteLine textstr & "<BR>"
    Set OutStream = Nothing
    %>

    , The form for submitting the data and the page for reading the text are on two different pages. In order to combine them we put both pages with in a frame. This allows the user to easy type and read the responses without being interrupted., Since the above form is in a file called chat.asp and the form posts to chat.asp, the form post to itself. To handle the output of the post you need some Active Server Code.

    <%

    textstr=Request.Form("txtbox")
    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    OutStream.Write ipaddr
    OutStream.WriteLine textstr & "<BR>"
    Set OutStream = Nothing
    %>

    The Active Server Page

    , The form for submitting the data and the page for reading the text are on two different pages. In order to combine them we put both pages with in a frame. This allows the user to easy type and read the responses without being interrupted., Since the above form is in a file called chat.asp and the form posts to chat.asp, the form post to itself. To handle the output of the post you need some Active Server Code.

    <%

    textstr=Request.Form("txtbox")
    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    OutStream.Write ipaddr
    OutStream.WriteLine textstr & "<BR>"
    Set OutStream = Nothing
    %>

    , The form for submitting the data and the page for reading the text are on two different pages. In order to combine them we put both pages with in a frame. This allows the user to easy type and read the responses without being interrupted., Since the above form is in a file called chat.asp and the form posts to chat.asp, the form post to itself. To handle the output of the post you need some Active Server Code.

    <%

    textstr=Request.Form("txtbox")
    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    OutStream.Write ipaddr
    OutStream.WriteLine textstr & "<BR>"
    Set OutStream = Nothing
    %>

    , , The form for submitting the data and the page for reading the text are on two different pages. In order to combine them we put both pages with in a frame. This allows the user to easy type and read the responses without being interrupted., Since the above form is in a file called chat.asp and the form posts to chat.asp, the form post to itself. To handle the output of the post you need some Active Server Code.

    <%

    textstr=Request.Form("txtbox")
    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    OutStream.Write ipaddr
    OutStream.WriteLine textstr & "<BR>"
    Set OutStream = Nothing
    %>

    , The form for submitting the data and the page for reading the text are on two different pages. In order to combine them we put both pages with in a frame. This allows the user to easy type and read the responses without being interrupted., Since the above form is in a file called chat.asp and the form posts to chat.asp, the form post to itself. To handle the output of the post you need some Active Server Code.

    <%

    textstr=Request.Form("txtbox")
    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    OutStream.Write ipaddr
    OutStream.WriteLine textstr & "<BR>"
    Set OutStream = Nothing
    %>

    , , The form for submitting the data and the page for reading the text are on two different pages. In order to combine them we put both pages with in a frame. This allows the user to easy type and read the responses without being interrupted., Since the above form is in a file called chat.asp and the form posts to chat.asp, the form post to itself. To handle the output of the post you need some Active Server Code.

    <%

    textstr=Request.Form("txtbox")
    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    OutStream.Write ipaddr
    OutStream.WriteLine textstr & "<BR>"
    Set OutStream = Nothing
    %>

    , The form for submitting the data and the page for reading the text are on two different pages. In order to combine them we put both pages with in a frame. This allows the user to easy type and read the responses without being interrupted., Since the above form is in a file called chat.asp and the form posts to chat.asp, the form post to itself. To handle the output of the post you need some Active Server Code.

    <%

    textstr=Request.Form("txtbox")
    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    OutStream.Write ipaddr
    OutStream.WriteLine textstr & "<BR>"
    Set OutStream = Nothing
    %>

    , , The form for submitting the data and the page for reading the text are on two different pages. In order to combine them we put both pages with in a frame. This allows the user to easy type and read the responses without being interrupted., Since the above form is in a file called chat.asp and the form posts to chat.asp, the form post to itself. To handle the output of the post you need some Active Server Code.

    <%

    textstr=Request.Form("txtbox")
    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    OutStream.Write ipaddr
    OutStream.WriteLine textstr & "<BR>"
    Set OutStream = Nothing
    %>

    , The form for submitting the data and the page for reading the text are on two different pages. In order to combine them we put both pages with in a frame. This allows the user to easy type and read the responses without being interrupted., Since the above form is in a file called chat.asp and the form posts to chat.asp, the form post to itself. To handle the output of the post you need some Active Server Code.

    <%

    textstr=Request.Form("txtbox")
    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    OutStream.Write ipaddr
    OutStream.WriteLine textstr & "<BR>"
    Set OutStream = Nothing
    %>

    , , The form for submitting the data and the page for reading the text are on two different pages. In order to combine them we put both pages with in a frame. This allows the user to easy type and read the responses without being interrupted., Since the above form is in a file called chat.asp and the form posts to chat.asp, the form post to itself. To handle the output of the post you need some Active Server Code.

    <%

    textstr=Request.Form("txtbox")
    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    OutStream.Write ipaddr
    OutStream.WriteLine textstr & "<BR>"
    Set OutStream = Nothing
    %>

    , The form for submitting the data and the page for reading the text are on two different pages. In order to combine them we put both pages with in a frame. This allows the user to easy type and read the responses without being interrupted., Since the above form is in a file called chat.asp and the form posts to chat.asp, the form post to itself. To handle the output of the post you need some Active Server Code.

    <%

    textstr=Request.Form("txtbox")
    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    OutStream.Write ipaddr
    OutStream.WriteLine textstr & "<BR>"
    Set OutStream = Nothing
    %>

    , , The form for submitting the data and the page for reading the text are on two different pages. In order to combine them we put both pages with in a frame. This allows the user to easy type and read the responses without being interrupted., Since the above form is in a file called chat.asp and the form posts to chat.asp, the form post to itself. To handle the output of the post you need some Active Server Code.

    <%

    textstr=Request.Form("txtbox")
    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    OutStream.Write ipaddr
    OutStream.WriteLine textstr & "<BR>"
    Set OutStream = Nothing
    %>

    , The form for submitting the data and the page for reading the text are on two different pages. In order to combine them we put both pages with in a frame. This allows the user to easy type and read the responses without being interrupted., Since the above form is in a file called chat.asp and the form posts to chat.asp, the form post to itself. To handle the output of the post you need some Active Server Code.

    <%

    textstr=Request.Form("txtbox")
    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    OutStream.Write ipaddr
    OutStream.WriteLine textstr & "<BR>"
    Set OutStream = Nothing
    %>

    , , The form for submitting the data and the page for reading the text are on two different pages. In order to combine them we put both pages with in a frame. This allows the user to easy type and read the responses without being interrupted., Since the above form is in a file called chat.asp and the form posts to chat.asp, the form post to itself. To handle the output of the post you need some Active Server Code.

    <%

    textstr=Request.Form("txtbox")
    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    OutStream.Write ipaddr
    OutStream.WriteLine textstr & "<BR>"
    Set OutStream = Nothing
    %>

    , The form for submitting the data and the page for reading the text are on two different pages. In order to combine them we put both pages with in a frame. This allows the user to easy type and read the responses without being interrupted., Since the above form is in a file called chat.asp and the form posts to chat.asp, the form post to itself. To handle the output of the post you need some Active Server Code.

    <%

    textstr=Request.Form("txtbox")
    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    OutStream.Write ipaddr
    OutStream.WriteLine textstr & "<BR>"
    Set OutStream = Nothing
    %>

    , , The form for submitting the data and the page for reading the text are on two different pages. In order to combine them we put both pages with in a frame. This allows the user to easy type and read the responses without being interrupted., Since the above form is in a file called chat.asp and the form posts to chat.asp, the form post to itself. To handle the output of the post you need some Active Server Code.

    <%

    textstr=Request.Form("txtbox")
    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    OutStream.Write ipaddr
    OutStream.WriteLine textstr & "<BR>"
    Set OutStream = Nothing
    %>

    , The form for submitting the data and the page for reading the text are on two different pages. In order to combine them we put both pages with in a frame. This allows the user to easy type and read the responses without being interrupted., Since the above form is in a file called chat.asp and the form posts to chat.asp, the form post to itself. To handle the output of the post you need some Active Server Code.

    <%

    textstr=Request.Form("txtbox")
    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    OutStream.Write ipaddr
    OutStream.WriteLine textstr & "<BR>"
    Set OutStream = Nothing
    %>

    Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object.

    Active Server Page

    Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object. , Installation is fairly simple, just follow these steps:

    1. Create a virtual root called "asp", make it giving it Execute Access
    2. Download and expand http://15seconds.com/files/012497.zip (1064 bytes) into the virtual directory just created.
    3. Create a blank text file in that directory called textwork.txt

    If you want to change the name of virtual root, you must change the name in the Active Server Page code since it uses the virtual root name to find the text file's path.

    Mainchat.asp could be mainchat.htm, and located in a directory with read access but the installation is easier with all the files in the same directory.,

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Set InStream= FileObject.OpenTextFile (TestFile, 1, False, False)
    Response.Write Instream.ReadALL & "&<BR&>"
    Set Instream=Nothing

    Here a Fileobject is created in the READ mode by specifying the parameter 1 to the OpenTextFile() method. In the following statement two things are done in one stroke. The READALL() function is used to read the entire contents of the file and then the Response.Write function is used to output the entire file to the client. The final step it to close the object.

    January 25, 1997

    The staff here at 15 Seconds would like to thank Sanjay for writing this issue of 15 Seconds. This is the first issue written by a person outside of 15 Seconds. If you are interested in writing for 15 seconds please drop us a line. We are looking for implementations of new or interesting ideas written in Active Server Pages or ISAPI.

    Thanks,
    Wayne Berry
    Editor

    This issue focuses on the use of Active Server Pages to dynamically create a chat page. The converstaion is stored in a file object. The chat pages are contained with in a framed page broken into two sections. The upper frame is the main view of the converstaion. The lower frame allows the viewer to input a line to the conversation. The upper frame refreshes based on a Meta refresh tag, each time reading the file and displaying it's contents. The lower frame writes a line of converstaion to the file., , The staff here at 15 Seconds would like to thank Sanjay for writing this issue of 15 Seconds. This is the first issue written by a person outside of 15 Seconds. If you are interested in writing for 15 seconds please drop us a line. We are looking for implementations of new or interesting ideas written in Active Server Pages or ISAPI.

    Thanks,
    Wayne Berry
    Editor

    This issue focuses on the use of Active Server Pages to dynamically create a chat page. The converstaion is stored in a file object. The chat pages are contained with in a framed page broken into two sections. The upper frame is the main view of the converstaion. The lower frame allows the viewer to input a line to the conversation. The upper frame refreshes based on a Meta refresh tag, each time reading the file and displaying it's contents. The lower frame writes a line of converstaion to the file., , The staff here at 15 Seconds would like to thank Sanjay for writing this issue of 15 Seconds. This is the first issue written by a person outside of 15 Seconds. If you are interested in writing for 15 seconds please drop us a line. We are looking for implementations of new or interesting ideas written in Active Server Pages or ISAPI.

    Thanks,
    Wayne Berry
    Editor

    This issue focuses on the use of Active Server Pages to dynamically create a chat page. The converstaion is stored in a file object. The chat pages are contained with in a framed page broken into two sections. The upper frame is the main view of the converstaion. The lower frame allows the viewer to input a line to the conversation. The upper frame refreshes based on a Meta refresh tag, each time reading the file and displaying it's contents. The lower frame writes a line of converstaion to the file., , The staff here at 15 Seconds would like to thank Sanjay for writing this issue of 15 Seconds. This is the first issue written by a person outside of 15 Seconds. If you are interested in writing for 15 seconds please drop us a line. We are looking for implementations of new or interesting ideas written in Active Server Pages or ISAPI.

    Thanks,
    Wayne Berry
    Editor

    This issue focuses on the use of Active Server Pages to dynamically create a chat page. The converstaion is stored in a file object. The chat pages are contained with in a framed page broken into two sections. The upper frame is the main view of the converstaion. The lower frame allows the viewer to input a line to the conversation. The upper frame refreshes based on a Meta refresh tag, each time reading the file and displaying it's contents. The lower frame writes a line of converstaion to the file., , The staff here at 15 Seconds would like to thank Sanjay for writing this issue of 15 Seconds. This is the first issue written by a person outside of 15 Seconds. If you are interested in writing for 15 seconds please drop us a line. We are looking for implementations of new or interesting ideas written in Active Server Pages or ISAPI.

    Thanks,
    Wayne Berry
    Editor

    This issue focuses on the use of Active Server Pages to dynamically create a chat page. The converstaion is stored in a file object. The chat pages are contained with in a framed page broken into two sections. The upper frame is the main view of the converstaion. The lower frame allows the viewer to input a line to the conversation. The upper frame refreshes based on a Meta refresh tag, each time reading the file and displaying it's contents. The lower frame writes a line of converstaion to the file., , The staff here at 15 Seconds would like to thank Sanjay for writing this issue of 15 Seconds. This is the first issue written by a person outside of 15 Seconds. If you are interested in writing for 15 seconds please drop us a line. We are looking for implementations of new or interesting ideas written in Active Server Pages or ISAPI.

    Thanks,
    Wayne Berry
    Editor

    This issue focuses on the use of Active Server Pages to dynamically create a chat page. The converstaion is stored in a file object. The chat pages are contained with in a framed page broken into two sections. The upper frame is the main view of the converstaion. The lower frame allows the viewer to input a line to the conversation. The upper frame refreshes based on a Meta refresh tag, each time reading the file and displaying it's contents. The lower frame writes a line of converstaion to the file., , The staff here at 15 Seconds would like to thank Sanjay for writing this issue of 15 Seconds. This is the first issue written by a person outside of 15 Seconds. If you are interested in writing for 15 seconds please drop us a line. We are looking for implementations of new or interesting ideas written in Active Server Pages or ISAPI.

    Thanks,
    Wayne Berry
    Editor

    This issue focuses on the use of Active Server Pages to dynamically create a chat page. The converstaion is stored in a file object. The chat pages are contained with in a framed page broken into two sections. The upper frame is the main view of the converstaion. The lower frame allows the viewer to input a line to the conversation. The upper frame refreshes based on a Meta refresh tag, each time reading the file and displaying it's contents. The lower frame writes a line of converstaion to the file., , The staff here at 15 Seconds would like to thank Sanjay for writing this issue of 15 Seconds. This is the first issue written by a person outside of 15 Seconds. If you are interested in writing for 15 seconds please drop us a line. We are looking for implementations of new or interesting ideas written in Active Server Pages or ISAPI.

    Thanks,
    Wayne Berry
    Editor

    This issue focuses on the use of Active Server Pages to dynamically create a chat page. The converstaion is stored in a file object. The chat pages are contained with in a framed page broken into two sections. The upper frame is the main view of the converstaion. The lower frame allows the viewer to input a line to the conversation. The upper frame refreshes based on a Meta refresh tag, each time reading the file and displaying it's contents. The lower frame writes a line of converstaion to the file.,

    Simple ASP Chat

    The staff here at 15 Seconds would like to thank Sanjay for writing this issue of 15 Seconds. This is the first issue written by a person outside of 15 Seconds. If you are interested in writing for 15 seconds please drop us a line. We are looking for implementations of new or interesting ideas written in Active Server Pages or ISAPI.

    Thanks,
    Wayne Berry
    Editor

    This issue focuses on the use of Active Server Pages to dynamically create a chat page. The converstaion is stored in a file object. The chat pages are contained with in a framed page broken into two sections. The upper frame is the main view of the converstaion. The lower frame allows the viewer to input a line to the conversation. The upper frame refreshes based on a Meta refresh tag, each time reading the file and displaying it's contents. The lower frame writes a line of converstaion to the file., , The staff here at 15 Seconds would like to thank Sanjay for writing this issue of 15 Seconds. This is the first issue written by a person outside of 15 Seconds. If you are interested in writing for 15 seconds please drop us a line. We are looking for implementations of new or interesting ideas written in Active Server Pages or ISAPI.

    Thanks,
    Wayne Berry
    Editor

    This issue focuses on the use of Active Server Pages to dynamically create a chat page. The converstaion is stored in a file object. The chat pages are contained with in a framed page broken into two sections. The upper frame is the main view of the converstaion. The lower frame allows the viewer to input a line to the conversation. The upper frame refreshes based on a Meta refresh tag, each time reading the file and displaying it's contents. The lower frame writes a line of converstaion to the file., , The staff here at 15 Seconds would like to thank Sanjay for writing this issue of 15 Seconds. This is the first issue written by a person outside of 15 Seconds. If you are interested in writing for 15 seconds please drop us a line. We are looking for implementations of new or interesting ideas written in Active Server Pages or ISAPI.

    Thanks,
    Wayne Berry
    Editor

    This issue focuses on the use of Active Server Pages to dynamically create a chat page. The converstaion is stored in a file object. The chat pages are contained with in a framed page broken into two sections. The upper frame is the main view of the converstaion. The lower frame allows the viewer to input a line to the conversation. The upper frame refreshes based on a Meta refresh tag, each time reading the file and displaying it's contents. The lower frame writes a line of converstaion to the file., , The staff here at 15 Seconds would like to thank Sanjay for writing this issue of 15 Seconds. This is the first issue written by a person outside of 15 Seconds. If you are interested in writing for 15 seconds please drop us a line. We are looking for implementations of new or interesting ideas written in Active Server Pages or ISAPI.

    Thanks,
    Wayne Berry
    Editor

    This issue focuses on the use of Active Server Pages to dynamically create a chat page. The converstaion is stored in a file object. The chat pages are contained with in a framed page broken into two sections. The upper frame is the main view of the converstaion. The lower frame allows the viewer to input a line to the conversation. The upper frame refreshes based on a Meta refresh tag, each time reading the file and displaying it's contents. The lower frame writes a line of converstaion to the file., , The staff here at 15 Seconds would like to thank Sanjay for writing this issue of 15 Seconds. This is the first issue written by a person outside of 15 Seconds. If you are interested in writing for 15 seconds please drop us a line. We are looking for implementations of new or interesting ideas written in Active Server Pages or ISAPI.

    Thanks,
    Wayne Berry
    Editor

    This issue focuses on the use of Active Server Pages to dynamically create a chat page. The converstaion is stored in a file object. The chat pages are contained with in a framed page broken into two sections. The upper frame is the main view of the converstaion. The lower frame allows the viewer to input a line to the conversation. The upper frame refreshes based on a Meta refresh tag, each time reading the file and displaying it's contents. The lower frame writes a line of converstaion to the file., , The staff here at 15 Seconds would like to thank Sanjay for writing this issue of 15 Seconds. This is the first issue written by a person outside of 15 Seconds. If you are interested in writing for 15 seconds please drop us a line. We are looking for implementations of new or interesting ideas written in Active Server Pages or ISAPI.

    Thanks,
    Wayne Berry
    Editor

    This issue focuses on the use of Active Server Pages to dynamically create a chat page. The converstaion is stored in a file object. The chat pages are contained with in a framed page broken into two sections. The upper frame is the main view of the converstaion. The lower frame allows the viewer to input a line to the conversation. The upper frame refreshes based on a Meta refresh tag, each time reading the file and displaying it's contents. The lower frame writes a line of converstaion to the file., , The staff here at 15 Seconds would like to thank Sanjay for writing this issue of 15 Seconds. This is the first issue written by a person outside of 15 Seconds. If you are interested in writing for 15 seconds please drop us a line. We are looking for implementations of new or interesting ideas written in Active Server Pages or ISAPI.

    Thanks,
    Wayne Berry
    Editor

    This issue focuses on the use of Active Server Pages to dynamically create a chat page. The converstaion is stored in a file object. The chat pages are contained with in a framed page broken into two sections. The upper frame is the main view of the converstaion. The lower frame allows the viewer to input a line to the conversation. The upper frame refreshes based on a Meta refresh tag, each time reading the file and displaying it's contents. The lower frame writes a line of converstaion to the file., , The staff here at 15 Seconds would like to thank Sanjay for writing this issue of 15 Seconds. This is the first issue written by a person outside of 15 Seconds. If you are interested in writing for 15 seconds please drop us a line. We are looking for implementations of new or interesting ideas written in Active Server Pages or ISAPI.

    Thanks,
    Wayne Berry
    Editor

    This issue focuses on the use of Active Server Pages to dynamically create a chat page. The converstaion is stored in a file object. The chat pages are contained with in a framed page broken into two sections. The upper frame is the main view of the converstaion. The lower frame allows the viewer to input a line to the conversation. The upper frame refreshes based on a Meta refresh tag, each time reading the file and displaying it's contents. The lower frame writes a line of converstaion to the file.,

    15 Seconds

    15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com. The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.

    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com., The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com., The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com. The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com., The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com., The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com. The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com., The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com., The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com. The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com., The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com., The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com. The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com., The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com., The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com. The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com., The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com., The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com. The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com., The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com., The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com. The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com., The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com., The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing

    Explaination

    15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com. The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.

    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com., The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com., The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com. The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com., The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com., The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com. The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com., The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com., The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com. The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com., The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com., The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com. The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com., The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com., The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com. The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com., The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com., The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com. The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com., The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com., The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com. The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com., The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing
    , 15 Seconds is a twice monthly online publication written for Internet developers and content providers about IIS, ISAPI and Active Server. We would very much like to get your feedback, including suggestions for topics. You can send email to webmaster@postpointsoft.com., The first line of code uses the IIS provided Request object to find the value present in the txtbox that is filed in the form.
    textstr=Request.Form("txtbox")
    The value is stored in the textstr variable.

    Next the Fileobject is opened it's reference is stored in the Fileobject variable.

    Set FileObject = Server.CreateObject("Scripting.FileSystemObject")
    TestFile = Server.MapPath ("/asp") & "\textwork.txt"
    Then we specify the file name and it's path and store it in a variable called Testfile. Here we have a file called textwork.txt to which all the text of the chat is appended.

    Next step is to open this file in append mode by specifying the number 8 to the OpenTextFile method.

    Set OutStream= FileObject.OpenTextFile (TestFile, 8, TRUE)
    ipaddr=Request.ServerVariables("REMOTE_ADDR") & " : "
    The other thing that is being done in this section is storing the ip address of the client to a variable and appending the string " :" to it.

    OutStream.Write ipaddr
    Writes the IP address of the client to the file.

    OutStream.WriteLine textstr & "<BR>"
    Writes the text written by the client and appends the BR tag. This tag is added so that when we display the chat session to the clients with each text row on a new line.

    Once having done that the stream is closed that is opened to the file.

    Set OutStream = Nothing

    About the Author

    Sanjay Shetty, was doing Computer Eng.. but dropped out of a college. Got involved in the HARE KRISHNA culture meanwhile started Nirvana Software Consultancy in 1994 a firm which specializes in database application software development using FoxPro on the Windows platform. In 1996 started another company, DBS Internet Services along with a couple of other friends and colleagues. The company specializes in creating and hosting internet/intranet web sites and also specializes in developing internet/intranet applications. can be contacted at:

    212 Raheja Chambers
    Nariman Pt. Bombay
    400021 INDIA.
    Phone No: 091-22-2844949
    Fax No: 091-22-2872640
    email : sanjay@dbsindia.com.

  • Rate This Article
    Not HelpfulMost Helpful
    1 2 3 4 5
    Other Articles
    Sep 11, 1997 - The Last-Modified Header in ASP
    A complete discussion of the Last Modified header and the Expires header including the effect they have on Active Server page and various browsers.
    [Read This Article]  [Top]
    Jul 31, 1997 - Creating a Category Site with ASP
    In this issue 15 Seconds implements a catalog site that is build with Active Server pages and SQL Server. Along with the implementation there is source code and a discussion of the advantages and disadvantages of creating a catalog site that gets its content from a database. Included are pages for displaying products, creating a menu page, category page, and running a search across a database.
    [Read This Article]  [Top]
    Apr 22, 1997 - Active Server Components with VS 5.0
    A rewrite of part one of a four-part series on Active Server objects. A simple example of creating a Active Server Component in Visual Studio 5.0 using the Active Template Library 2.0. The example component retrieves the user's cookie, if not available issues a new 128-bit cookie. Included in the issue is the source code and step by step instructions. This issue has been rewritten to illustrate the use of Visual Studio 5.0 and ATL 2.0 in writing Active Server Components.
    [Read This Article]  [Top]
    Apr 6, 1997 - Creating a List Server with ASP
    This issue describes how to make a list server using Active Server, SQL Server, and Stephen Genusa's ASPMail Component. Included are source and instructions for adding the user to the list from a Active Server page, removing the user from the list via a Active Server page, and sending mail to the whole list.
    [Read This Article]  [Top]
    Mailing List
    Want to receive email when the next article is published? Just Click Here to sign up.

    Support the Active Server Industry

    internet.commediabistro.comJusttechjobs.comGraphics.com

    Search:

    WebMediaBrands Corporate Info

    Legal Notices, Licensing, Permissions, Privacy Policy.
    Advertise | Newsletters | Shopping | E-mail Offers