I'm doing a website which has a string from the database but I want this string to be informed as follows, instead a button will appear that the user will click and this button will open the url that is the text that is ta in the string that is the Link to Download.
<dt>
@Html.DisplayNameFor(model => model.Link)
</dt>
<dd>
@Html.DisplayFor(modelItem => item.Link)
</dd>
Here I bring the string item to appear on the screen, but I want it to be a button that opens the URL that is itself.