Is it possible to put a HTML link in validation summary message? For example I want to put a link to another page in case there is validation error:
@Html.Va
Finally I chose another way to do it: create a div containing the link etc. outside of validation summary, and add the div only if modelstate is not valid:
@If Not ViewData.ModelState.IsValid Then
@read more
End If
This is inspired by an answer to similar question.