How to Save a Text file on a website
How can i make an option to save a text file on a website?
Well this is how you save it to your computer. I dont know if this helps
Ok import Imports System.IO
Dim file As System.IO.FileStream
file = System.IO.File.Create("c:whatever....test.txt")
then to write to that file put this under it
TextFile.WriteLine("here")
TextFile.WriteLine("words here")
TextFile.WriteLine("here")
TextFile.WriteLine("words here")
TextFile.Close()
hope that helps