how would one using a simple form write text to a page forever,until the page with the text in is deleted.
thanks in advance.
scroots
thanks in advance.
scroots
<form action="YOUR_ASP_PAGE.ASP" method="post"> <textarea rows="10" cols="30" name="theText"></textarea> <br> <input type="submit"> </form>
<%@Language=VBScript%> <% Set fso = Server.CreateObject("Scripting.FileSystemObject") set fs = fso.CreateTextFile("FULL_PATH_TO_YOUR_FILE", true) fs.write(Request.Form("theText")) fs.Close set fs = nothing set fso = nothing %>
Comment