I want to call the @Html.ActionLink method inside a c# function to return a string with a link on it.
Something like this:
string a = \"Email is lock
Your best bet is to construct the link manually using the UrlHelper available in the controller. Having said that, I'm suspicious that there is probably a better way to handle this in a view or partial view, shared or otherwise.
string a = "Email is locked, click here to unlock.";