Access Model State Property within the View of ASP.NET MVC 4

Hi Folks,
 
If you want to access the ModelState property in the View , you can use the ModelState in your Razor View as depicted below in image:
 
 
 
 This is the source code as shown below: 
  1. @model IEnumerable<MVCSample.Models.EmpRegistration>  
  2. @{  
  3.     ViewBag.Title = "Verify";  
  4.       
  5.     if (@ViewContext.ViewData.ModelState.IsValid)  
  6.     {  
  7.         ViewBag.Title = "Verify";  
  8.   
  9.         if (TempData["EmployeeRegistration"] != null)  
  10.         {  
  11.             var tempDataEmployeeRegistration = TempData["EmployeeRegistration"];  
  12.         }  
  13.     }  
  14. }  
Thanks 

To learn more about MVC please go to the following link.

MVC Articles

Thanks.

Enjoy coding and reading.