<% '***************************************************** '* Code written by Alexander Haneng (C) 1998-2001 * '* FREE download from http://www.haneng.com/ * '***************************************************** 'Ready Scripting.FileSystemObject Set MyFileObj=Server.CreateObject("Scripting.FileSystemObject") Set MyOutStream=MyFileObj.OpenTextFile(Server.MapPath("guestbook.txt"), 2, TRUE) MyOutStream.Write(Request.Form("new")) MyOutStream.Close 'Sends them back to the default page Response.Redirect "default.asp" %>