Rendering a simple link is easy:
@Html.ActionLink(\"About this Website\", \"About\")
But how would you write the following in razor syntax:
I'm not sure I follow your example properly as it doesn't contain a link and the text for the link is different to that of the span but something like this should give you a general idea:
Hello, I'm inconvenient!
Using Url.Action()
will return the actual hyperlink rather than the element.