Posted on: 11/19/2014 12:24:39 PM | Views : 361

Hello guys, I wonder if you can help me at all.
I have a small form and on submission, I'd like to send all the data to a gmail address. I've done some testing but I don't get asp.net to send the email (I'm on visual studio 2008, IIS 5.1, Windows xp)
So, here is the submit button:
<div class="submitButton"> <input id="submitForm" type="submit" value="Submit" runat="server" onserverclick="submitData"> <div class="clear"></div> </div> and this is the script that takes care of the email (at the moment I'm not trying to send any data from the form, I was concentrating in getting asp.net to send an email):
protected void submitData(object sender, EventArgs e) { //send email //TextBox1.Text = "submitted"; Sm ...

Go to the complete details ...