How do I make a mailto link using Razor?
I\'ve seen Html.MailTo, but when I try @Html.MailTo nothing comes up.
Thanks!
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.