I can get the username from user's input and I need to write it to a text file. Anyone knows the
Code:
<%
xName = "My name is: " + username
set fs=Server.CreateObject("Scripting.FileSystemObject")
set f=fs.CreateTextFile(NewFilePath,true)
f.writeline(xName) ??? what's the correct parameter?
f.Close
set f=nothing
set fs=nothing
%>
Comment