A general apprach is to get the referer
(Request.ServerVariable("HTTP_REFERER")) page and send it as a link. An
Alternate way would be to cache a copy of the page in HTML and insert the
cached copy into the body of the message.
BTW sending looks like this.
Dim obj_SMTPMessage As Mail.MailMessage = New Mail.MailMessage()
With obj_SMTPMessage
.Bcc = "(e-mail address removed)"
.Body = "THE BODY OF THE MESSAGE"
.BodyFormat = Mail.MailFormat.Html
.From = txtYourEmail.Text
.To = txtFriendsEmail.Text
.Subject = "Message from:> " & txtYourEmail.Text
End With
Mail.SmtpMail.SmtpServer = "192.168.1.254"
Mail.SmtpMail.Send(obj_SMTPMessage)
Bryan Martin
(e-mail address removed)