mailto 和文字控制一起

发布于 2024-11-06 08:26:33 字数 263 浏览 0 评论 0原文

是否可以做到这一点以及如何做到?

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夏雨凉 2024-11-13 08:26:33

如果您的应用程序在.net 3.5下运行;

email:<a href="mailto:<%= Server.HtmlEncode(email1.Text) %>"><asp:Literal Text="[email protected]" ID="Literal1" runat="server"/></a><br/>

如果您的应用程序在.net 4下运行;

email:<a href="mailto:<%: email1.Text%>"><asp:Literal ID="email1" Text="[email protected]" runat="server"/></a><br/>

注意:
尽管您也可以在 .net 4 上使用第一种方法,但最好使用第二种方法,以避免所谓的语法噪音

希望这会有所帮助。

If your application is running under .net 3.5;

email:<a href="mailto:<%= Server.HtmlEncode(email1.Text) %>"><asp:Literal Text="[email protected]" ID="Literal1" runat="server"/></a><br/>

If your application is running under .net 4;

email:<a href="mailto:<%: email1.Text%>"><asp:Literal ID="email1" Text="[email protected]" runat="server"/></a><br/>

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文