I have a action link on my MVC3 razor view. Which have a action link as bellow:
@Html.ActionLink("Click Here (I do not have Middle Name)",
"", "", new { @class = "button lines-6" })
I want to change action link text to:
<strong>Click Here </strong> (I do not have Middle Name)
Is there any way to sort it out.
Many Thanks
Using the
URL.Actioninstead of an action link you have more control over the contents.