解决方法
考虑到mailto功能是需要在客户端发生的功能.你将需要
javascript来做到这一点.根据您希望mailto发生的时间,您有两个选择.
如果您希望在单击LinkButton后立即发生,则只需添加到LinkButton的OnClientClick事件:
<asp:LinkButton runat="server" ID="btnEmail" Text="Send Email" OnClientClick="window.open('mailto:someone@somewhere.com','email');"> </asp:LinkButton>
如果您希望在服务器端代码运行后发生这种情况,那么当新页面启动时,您将连接javascript事件以运行:
// At the end of your LinkButton server side OnClick event add the following code: ClientScript.RegisterStartupScript(this.GetType(),"FormLoading","window.open('mailto:someone@somewhere.com','email');",true);
希望有所帮助.