basically i want the single text box form asking for an email that i have, to auto database peoples email so i can send a mass email out if I don't use a database for this that would be amazing note: I have zero experience with any of this type of programming besides simply having the form email to me, which I link to a bluehost file given to me.. Thank you for any help!
If you dont want a db you can use a txt file to hold them all in: Dim objStreamWriter As IO.StreamWriter = IO.File.AppendText(Server.MapPath("thefilename.txt")) objStreamWriter.WriteLine(Textbox1.Text) objStreamWriter.Close() Code (.Net):