You could use Url.Action to build the link for you:
<a href="https://stackoverflow.com/questions/402605/<% =Url.Action("Action", "Controller")%>">link text <span>with further blablah</span></a>
or use Html.BuildUrlFromExpression:
<a href="https://stackoverflow.com/questions/402605/<% =Html.BuildUrlFromExpression<Controller>(c => c.Action()) %>">text <span>text</span></a>