我在标签中的 mailto 链接遇到了一个小问题。
事实上,我添加了一个包含 mailto 链接的标签,并且程序以本机方式尝试使用用户定义的默认程序打开它。
Win32Exception
但实际上,当该协议没有默认程序时,它不起作用并引发 a 。
所以我强迫它打开浏览器,但它也不起作用......
这是我的代码示例:
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
// Specify that the link was visited.
this.linkLabelContactEmail.LinkVisited = true;
try
{
// Open the default program to send an email.
System.Diagnostics.Process.Start("mailto:contact@mysite.fr");
}
catch (Win32Exception)
{
// Force opening in a browser
System.Diagnostics.Process.Start("http://mailto:contact@mysite.fr");
}
}
但它不起作用:/(如果默认程序链接到该协议,它就会起作用)
有谁知道我该如何解决这个问题?像强制将默认协议添加到 mailto 链接?
编辑 :
我试过这个,效果很好!但它仍然无法处理 linux 浏览器:/ 而且它不是 Unix OS 下的 .exe,我应该如何尝试?(我知道默认情况下会安装firefox,它会被处理吗?)
private void linkLabel1_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
{
// Specify that the link was visited.
this.linkLabelContactEmail.LinkVisited = true;
try
{
// Open the default program to send an email.
System.Diagnostics.Process.Start("mailto:contact@mysite.fr");
}
catch (Win32Exception)
{
try
{
// Force opening in Firefox
System.Diagnostics.Process.Start("firefox", "mailto:contact@mysite.fr");
}
catch (Win32Exception)
{
try
{
// Force opening in IE
System.Diagnostics.Process.Start("chrome", "mailto:contact@mysite.fr");
}
catch (Win32Exception)
{
try
{
// Force opening in IE
System.Diagnostics.Process.Start("iexplore", "mailto:contact@mysite.fr");
}
catch (Win32Exception)
{
MessageBox.Show(
"Vous n'avez aucun programme par défaut de configuré pour envoyer un mail, ni aucun des 3 navigateurs (Firefox, Chrome, Internet Explorer). Nous ne pouvons donc vous aidez à envoyer ce mail...",
"Erreur à l'envoi du mail",
MessageBoxButtons.OK,
MessageBoxIcon.Warning,
MessageBoxDefaultButton.Button1
);
}
}
}
}
}