for all the people who use brinkster's General service you may know that editing and creating files from the ASP script... for example:

Code:
<%
dim fs,f
set fs=Server.CreateObject("Scripting.FileSystemObject") 
Set f=fs.OpenTextFile(Server.MapPath("text.txt"), 8)
f.WriteLine("Hello World!")
f.close
set f=nothing
set fs=nothing
%>
would not work giving you an error like not able to write or something like that... would there be a way around this so you could make a counter or a login/sign-up script?