Mallikarjuna
Mallikarjuna

Reputation: 71

displaying validationSummary message in div element in asp.net mvc 2.0

I am doing validations in registration page.My requirement is if ValidationSummary error message is generated i,e,ValidationSummary is become true then i have to display that ValidationSummary message in that div element.If error is not generated then that div element is not visible.

So i have to check whether Validationummary is true then div element is diplayed otherwise it will be hidden.So please tell me how to do this .

Initially i made the div Display:none.Now i have to make it display:visible when error generated.we can do this using javascript or what?

Upvotes: 1

Views: 989

Answers (1)

Darin Dimitrov
Darin Dimitrov

Reputation: 1038710

You could use the IsValid property of the model state.

<% if (!ViewData.ModelState.IsValid) { %>

<% } %>

Upvotes: 2

Related Questions