0 out of 1 rated this helpful - Rate this topic

Controller.ValidateModel Method (Object, String)

.NET Framework 4

Validates the specified model instance using an HTML prefix.

Namespace:  System.Web.Mvc
Assembly:  System.Web.Mvc (in System.Web.Mvc.dll)
protected internal void ValidateModel(
	Object model,
	string prefix
)

Parameters

model
Type: System.Object
The model to validate.
prefix
Type: System.String
The prefix to use when looking up values in the model provider.

When a model is being validated, all validators for all properties are run if at least one form input is bound to a model property.

The ValidateModel is like the method TryValidateModel except that the TryValidateModel method does not throw an InvalidOperationException exception if the model validation fails.

For more information model validation, see the entry Input Validation vs. Model Validation in ASP.NET MVC on Brad Wilson's blog.

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.