Click here to Skip to main content
15,885,365 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi Friends,

I have implementeed the code that is validating the information which user is entering.

If the user enter the wrong informatoin then my model state showing the error beside the text box.I want to show them in the pop up.

How to show them in the pop up.

Please help me,


Thanks
Posted

1 solution

1-First Create an html helper for the generating the html mark up for the pop up and arguments passed to the helper method are the model state errors.below are the code for get all the errors in model state.
C#
foreach (ModelState modelState in ViewData.ModelState.Values) {
    foreach (ModelError error in modelState.Errors) {
        DoSomethingWith(error);
    }
}


2-Put this helper method in master page.
3.Using jquery dialog write code in document.ready for pop up.

http://develoq.net/2011/how-to-create-custom-html-helpers-for-asp-net-mvc-3-and-razor-view-engine/[^]
Hope this helps..
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900