M
Mr. X.
Helo,
For the code (The code is the code-behind an aspx page) :
'**************************************************
Dim fileName As String
Dim st As System.IO.StreamWriter
filename = "a.txt"
st = New System.IO.StreamWriter(fileName)
st.Write("this is a text")
st.Close()
st = Nothing
'**************************************
The above code runs, there is not any file created.
How can I save (and load) a file, and just putting simple text on it ?
Thanks
For the code (The code is the code-behind an aspx page) :
'**************************************************
Dim fileName As String
Dim st As System.IO.StreamWriter
filename = "a.txt"
st = New System.IO.StreamWriter(fileName)
st.Write("this is a text")
st.Close()
st = Nothing
'**************************************
The above code runs, there is not any file created.
How can I save (and load) a file, and just putting simple text on it ?
Thanks