should be easy but need help! - form to database for emails

Discussion in 'Programming' started by kangaroobin, Mar 19, 2008.

  1. #1
    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!
     
    kangaroobin, Mar 19, 2008 IP
  2. AstarothSolutions

    AstarothSolutions Peon

    Messages:
    2,680
    Likes Received:
    77
    Best Answers:
    0
    Trophy Points:
    0
    #2
    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):
     
    AstarothSolutions, Mar 20, 2008 IP