MailTo link in Razor

前端 未结 5 808
心在旅途
心在旅途 2021-01-04 01:14

How do I make a mailto link using Razor?

I\'ve seen Html.MailTo, but when I try @Html.MailTo nothing comes up.

Thanks!

5条回答
  •  無奈伤痛
    2021-01-04 01:39

    You should just make a normal hyperlink:

    ...
    

    Razor and MVC helper methods are not intended to replace HTML tags; they're intended to make common data-bound elements simpler.

提交回复
热议问题