Outlook

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a C# ASP.NET webform that has a linkbutton control wherein if the user
clicks it, it should open up Microsoft Outlook as a separate window with the
To: edit box filled in with an email address. The user should be able to send
an email. How do I go about doing this?
 
Or use COM interop to be sure you are using MS Outlook (when it is not the
default mail handler) :-)

Tamir Khason said:
use mailto:[email protected] structure in linkbutton link field

--
Tamir Khason
"The computer is no better
than its program." [Elting Elmore Morison]
http://www.dotnet.us/

Newbie said:
I have a C# ASP.NET webform that has a linkbutton control wherein if the
user
clicks it, it should open up Microsoft Outlook as a separate window with
the
To: edit box filled in with an email address. The user should be able to
send
an email. How do I go about doing this?
 
Tamir,

Can u pls. elaborate. I was looking at the linkbutton properties and didnt
find a structure or link field property. I also added mailto:[email protected] in
the message handler lbtnMyButton_Click(object sender, System.EventArgs e) but
its not building.

Tamir Khason said:
use mailto:[email protected] structure in linkbutton link field

--
Tamir Khason
"The computer is no better
than its program." [Elting Elmore Morison]
http://www.dotnet.us/

Newbie said:
I have a C# ASP.NET webform that has a linkbutton control wherein if the
user
clicks it, it should open up Microsoft Outlook as a separate window with
the
To: edit box filled in with an email address. The user should be able to
send
an email. How do I go about doing this?
 
Back
Top