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
You can check if form is valid by jquery and update div with link text:
$('form').submit(function(){ if(!this.valid()) $('#divToUpdate').html("read more"); });