mailto 和文字控制一起
是否可以做到这一点以及如何做到?
email: <a href="" mailto:""email1""">
<asp:Literal ID="email1" runat="server" >
</asp:Literal>
</a> <br />
我尝试这样做,但是当我打开 Outlook 时,它不会在“TO:”部分中写入任何内容。
Is it possible to do this and how?
email: <a href="" mailto:""email1""">
<asp:Literal ID="email1" runat="server" >
</asp:Literal>
</a> <br />
I try this but when I open outlook it doesn't write anything in TO: section.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您的应用程序在.net 3.5下运行;
如果您的应用程序在.net 4下运行;
注意:
尽管您也可以在 .net 4 上使用第一种方法,但最好使用第二种方法,以避免所谓的语法噪音
希望这会有所帮助。
If your application is running under .net 3.5;
If your application is running under .net 4;
NOTE:
although you can use the first approach on .net 4 as well, it's better to use the second one in order to avoid so called syntactic noise
hope this helps.