OK so far here's what I have an initial page which contains the form fields filename and story and posts to this page:
<%
Dim strfilename
Dim Story
filename = Request.Form("fieldname")
Story = Request.Form("story")
Set fs = CreateObject("Scripting.FileSystemObject")
Set wfile = fs.CreateTextFile("strfilename", True)
wfile.Write (Story)
wfile.close
Set wfile=nothing
Set fs=nothing
response.write("Text created")
%>
At the moment I'm getting an error saying permission denied probably to the folder I'm trying to add the file to. Can you point me in the way of any other faults. I'm new to asp BTW and really appreciate your help!