I'm new to web programming. I've followed an example in a book...but can't get this to work for me. This asp file is called by a form in an html file. The data sent to this file will print out with 'response.srite'...but, I can't save the file to the server.<br /><br /><%<br /><br />option explicit<br /><br /><br />dim FSO<br />dim objStream<br />dim strText<br />dim strComment<br /><br />const TristateFalse = 0<br /><br /><br />set FSO=createobject("Scripting.filesystemobject")<br /><br />strText = request.form("title") & ".txt"<br /><br />strComment = request.form("comment")<br /><br /><br />Set objStream = FSO.CreateTextFile(strText , True, TristateFalse)<br /><br />With objStream<br /><br /> .WriteLine strComment<br /> .close<br /><br />End With<br /><br /><br />set FSO=nothing<br />set objStream=nothing<br />set strText=nothing<br />set strComment=nothing<br /><br /><br /><br /><br />%>
</div>
</div>