Print Page | Close Window

Online Form

Printed From: Web Wiz Forums
Category: General Discussion
Forum Name: ASP.NET Discussion
Forum Description: Discussion and chat on ASP.NET related topics.
URL: https://forums.webwiz.net/forum_posts.asp?TID=4235
Printed Date: 28 March 2026 at 2:24am
Software Version: Web Wiz Forums 12.08 - https://www.webwizforums.com


Topic: Online Form
Posted By: benzeer
Subject: Online Form
Date Posted: 14 July 2003 at 7:39am

Hello Everyone,

I am looking for online form to email address something similar to:

http://www.arabia.com/support/form/english/ - http://www.arabia.com/support/form/english/

How I can get this kind of scripts or a program that can do it for you.

 

Thank you,




Replies:
Posted By: Diep-Vriezer
Date Posted: 08 August 2003 at 2:56am
It's not very difficult, just search on Google to the function wich submits mail in ASP.Net, be sure to have a SMTP server configured on IIS, create a function wich sets the form data in the mail headers, and you're done!

Sorry, I was a bit *** against you, so the next post contains some usefull stuff.

-------------
Gone..


Posted By: Diep-Vriezer
Date Posted: 17 August 2003 at 7:11am

Alright, I've come up with something myself (alright, the microsoft MSDN library..):

'Note: This is a code behind file using Visual Basic.NET, so be carefull with copying

Imports System.Web
Imports System.Web.Mail

'I left the other stuff that belong here out

Private Sub SendMail()

  Dim mMessage As MailMessage

  SmtpMail.SmtpServer = "" 'Add the outgoing (smtp) mail server here
  mMessage = New MailMessage
  mMessage.Bodyformat = Mailformat.Text
  mMessage.To = "website@somewhere.com"
  mMessage.From = "websote@somewhereelse.com"
  mMessage.Body = "This is a test e-mail"
  mMessage.Subject = "Website email"
  SmtpMail.Send(mMessage)

End Sub

Excuse me 4 being so (...) ,

Floris [ Diep-Vriezer ]




Print Page | Close Window

Forum Software by Web Wiz Forums® version 12.08 - https://www.webwizforums.com
Copyright ©2001-2026 Web Wiz Ltd. - https://www.webwiz.net