请问在asp.net页面里面如何调用outlook发信界面啊

时间:2022-12-01 06:01:52
页面上有个button,我点击button然后弹出outlook的发信界面,
string mailtoStr= "mailto:a@b.com";
System.Diagnostics.Process.Start(mailtoStr);
我是这么写的,但是报错。
Exception Details: System.ComponentModel.Win32Exception: An attempt was made to reference a token that does not exist

Source Error: 


Line 56:  string mailtoStr= "mailto:a@sb.com";
Line 57: 
Line 58:  System.Diagnostics.Process.Start(mailtoStr);
大家帮忙看看,怎么才能实现啊。谢谢了。

12 个解决方案

#1


该回复于2007-10-26 14:44:45被版主删除

#2


大家帮帮忙啊,谢谢啦。

#3


直接写在页面上

<a href="mailto:a@sb.com">发送邮件给我</a>

#4


那还要点超链接才可以啊
我是要点个button出了弹出outlook还要实现其他功能的。

#5


<script>
function mail()
{
alert('aaa');
window.location.href='mailto:a@b.com';
}
</script>
<input type =button value='aaaaaa' onclick=javascript:mail()>

#6


window.location.href

#7


ding

#8


<a href="mailto:a@sb.com">发送邮件给我</a>

#9


谢谢glamorsunny(魅力阳光)了
搞定了。

#10


button.Attribute("onclick","test()");
-------
写前端JS
<script>
function test()
{
 document.form1.action="mailto:a@sb.com";
 document.form1.submit();
}
</script>

#11


按钮调用脚本
window.location.href='mailto:shadow841112@163.com';

#12


学习

#1


该回复于2007-10-26 14:44:45被版主删除

#2


大家帮帮忙啊,谢谢啦。

#3


直接写在页面上

<a href="mailto:a@sb.com">发送邮件给我</a>

#4


那还要点超链接才可以啊
我是要点个button出了弹出outlook还要实现其他功能的。

#5


<script>
function mail()
{
alert('aaa');
window.location.href='mailto:a@b.com';
}
</script>
<input type =button value='aaaaaa' onclick=javascript:mail()>

#6


window.location.href

#7


ding

#8


<a href="mailto:a@sb.com">发送邮件给我</a>

#9


谢谢glamorsunny(魅力阳光)了
搞定了。

#10


button.Attribute("onclick","test()");
-------
写前端JS
<script>
function test()
{
 document.form1.action="mailto:a@sb.com";
 document.form1.submit();
}
</script>

#11


按钮调用脚本
window.location.href='mailto:shadow841112@163.com';

#12


学习