for in browser application:
Add the below line to your .xaml.cs file to open mailto (email link) when an event gets fired (i.e. HyperlinkButton is clicked or etc):
HtmlPage.Window.Navigate(new Uri("mailto:test@test.com"));
@ dj_alik: your method threw an exception "The DOM/scripting bridge is disabled"
@CodeCrusier: your method worked like a charm.
Thanks for your help guys. I can't believe it was something so simple that I was unable to find anywhere else.
Thanks EE :-)
.NET Programming
The .NET Framework is not specific to any one programming language; rather, it includes a library of functions that allows developers to rapidly build applications. Several supported languages include C#, VB.NET, C++ or ASP.NET.
Add the below line to your .xaml.cs file to open mailto (email link) when an event gets fired (i.e. HyperlinkButton is clicked or etc):
HtmlPage.Window.Navigate(n