sending mails

  • Thread starter Thread starter krishna
  • Start date Start date
K

krishna

Hi,
I have a doubt stating that
i have to send the email with some message how to do it in
ASP.NET.

Regards,
Krishna.
 
Krishna,

It depends the way you want it, from the clientside
\\\
Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs) Handles MyBase.Load
If Not IsPostBack Then
Me.Button1.Text = "Send Mail"
Me.Button1.Attributes("onClick") =
"window.location='mailto:[email protected]?subject=Cor demo&body=I hope this
helps?';"
End If
End Sub
///

I hope this helps a little bit?

Cor
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Crystal Reports in vb 1
Run time visiblity 1
Grid Lines 1
Crystal reports in VB6 3
date format 2
Msword 3
Instance of an form 5
MDI Relation ship 1

Back
Top