TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Maralynn Rochat
NA
2
0
Sending online form to my email address...
Jul 25 2007 10:36 AM
Context: Aspx page using C# I have a form. I have validation. I just need to figure out how to write the code to send the form to MY email instead of an address the client types into an input box (txtTo). Here's the code I have: MailAddress objMail_fromaddress = new MailAddress(txtFrom.Text); MailAddress objMail_toaddress = new MailAddress(txtTo.Text); objMail.From = objMail_fromaddress; objMail.To.Add(objMail_toaddress); Can anyone help??
Reply
Answers (
1
)
System Tray
Calling Unmanaged DLL From C#