The asp.net-mvc-validation tag has no wiki summary.
6
votes
5answers
9k views
ASP.NET MVC 2 RC client side validation not working
I can't seem to get any client side validation working on a MVC 2 RC app.
My model has the following:
public class ExampleModel
{
[Required(ErrorMessage="Test1 is required")]
...
4
votes
2answers
537 views
ASP.NET MVC Validationsummary with excludePropertyErrors = true renders empty if the model is invalid
Say you have a standard ValidationSummary:
<%: Html.ValidationSummary(excludePropertyErrors: true) %>
If the ModelState contains model errors for properties but not for the model itself the ...
3
votes
1answer
137 views
partial view coming without validation attributes (ASP.NET MVC 3)
A weird thing keeps happening on one of my ASP.NET MVC 3 apps.
I am fetching insert rows via jQuery Ajax api and there is no problem with that. But when I get the necessary partial view back, it is ...
3
votes
1answer
502 views
Manually invoking ModelState validation
I'm using ASP.NET MVC 3 code-first and I have added validation data annotations to my models. Here's an example model:
public class Product
{
public int ProductId { get; set; }
...
3
votes
2answers
962 views
Remote ViewModel validation of nested objects not working
I have a class user which looks like this:
public class User
{
public int UserId { get; set; }
[Required(ErrorMessage = "A username is required.")]
[StringLength(20, ErrorMessage = "Your ...
3
votes
2answers
519 views
Dynamic validation on MVC 2
This works fine
[MetadataType(typeof(Area_Validation))]
public partial class Area
{
...
}
public class Area_Validation
{
[Required(ErrorMessage = "Please add this field.")]
public int ...
3
votes
5answers
7k views
How to create custom validation attribute for MVC
I'd like to create a custom validation attribute for MVC2 for an email address that doesn't inherit from RegularExpressionAttribute but that can be used in client validation. Can anyone point me in ...
2
votes
1answer
158 views
ASP.NET MVC TryValidateModel() Issues when Model is Modified
I have a two step form process where the first set of data is stored in session.
[IsMp4File]
[Required(ErrorMessage = "* Please select a video to upload")]
public HttpPostedFileBase VideoClip { get; ...
2
votes
4answers
178 views
Fluent Validation in ASP.net MVC - Database Validations
I'm using the Fluent Validation framework in my ASP.net MVC 3 project. So far all of my validations have been very simple (make sure string is not empty, only a certain length, etc.) but now I need to ...
2
votes
3answers
414 views
Client side validation not working for hidden field in asp.net mvc 3
I have got a hidden field with a validation for it as below
@Html.HiddenFor(m => m.Rating)
@Html.ValidationMessageFor(m => m.Rating)
The Rating property has Range validator attribute applied ...
2
votes
2answers
193 views
ASP.net MVC Validation Hook
I have the following view in ASP.net MVC 3:
@model Models.CreateProjectViewModel
<script type="text/javascript" src="@Url.Content("~/Scripts/jquery.validate.min.js")"></script>
...
2
votes
4answers
128 views
Customize the Error Message for an invalid date in ASP.net MVC
I have an ASP.net MVC model with a date:
public class EditModel
{
[Display(Name="DOB")]
public DateTime? DateOfBirth { get; set; }
}
@Html.TextBoxFor(m => m.DateOfBirth)
...
2
votes
2answers
570 views
What does requestValidationMode=“2.0” actually do?
I'm trying to solve a "A potentially dangerous Request.Form value was detected from the client" problem, and SO answers and Scott Hanselman recommend setting
<httpRuntime ...
2
votes
4answers
134 views
Anyone have any good resources on using client validation with MVC2 and jQuery?
Does anyone have any good tutorials on using the client-validation with MVC2 and jQuery?
1
vote
4answers
19 views
Data Validation in MVC
Suppose i have a 'View' for filling up form for renting a DVD , as per MVC architecture , either of 'Controller' or 'Model', who is supposed to validate the form data?
Thanks
1
vote
1answer
150 views
Custom Validation : get the property name from validationContext
For my ASP.NET MVC projects, I created a custom validation attribute. Here is the code I am struggling with :
protected override ValidationResult IsValid(object value, ValidationContext ...
1
vote
1answer
93 views
Resolving urls from Route Values on server side
I am trying to create a ValidationAttribute (for Remote validation which only works on the server side) and inside the IsValid method, I need to resolve the url from url route values. Here is my ...
1
vote
2answers
103 views
MVC 3 Validation - Format datetime
I want to format my DateTime field in razor in a clean way.
[MetadataType(typeof(Guestbook_Validation))]
public partial class web_GuestBook
{
// Partial generated EF
}
[Bind(Exclude="Id")]
...
1
vote
1answer
144 views
InvalidOperationException was unhandled by user code
I am trying to save changes made to a list(of xxx) in a function... Am I over looking something because it barfs on the UpdateModel(e) with saying:
System.InvalidOperationException was unhandled by ...
1
vote
1answer
105 views
ASP.NET MVC - Validation Summary and BlockUI
So I've been blocking the page with a "Loading" message using the following code for a logon page
<input id="submit" type="submit" value="Log On" onclick="block();"/>
If there's an error with ...
1
vote
2answers
387 views
MVC 3 partial view validation problem
I'm trying to validate a form in a Partal View using the DataAnnotations.
The problem is when I check if the form is valid in the javascript, it always returns true, even if the form doesn't meet the ...
1
vote
2answers
552 views
DataType attribute doesn't work
In ASP.NET MVC 3 web application I have a viewmodel with properties which marked with DataType attributes, but they don't do actual validation on cliant side, and on server side, Why?
public class ...
1
vote
0answers
43 views
Can Castle Validators work with DataAnnotations attributes?
Is there a way of making DataAnnotations attributes such as Required to work with Castle Validators?
I know Castle has its own attributes - but I am wanting to use the same attribute for the view and ...
1
vote
2answers
128 views
Conditionally disable validation
I have form with few text boxes which goes through validation (both server and client sides). In the form I have buttons: "Next", "Back", "CanceL". So I don't need validation to fireup then user ...
1
vote
1answer
96 views
Client-side validation against an object in ASP.Net-MVC3?
I have ah HTML5 form with an action defined as follows:
@using (Html.BeginForm("SearchAction", "ResultsController"))
The form takes in two text fields:
<input type="text" name="txtSearchTerm" ...
1
vote
0answers
691 views
Disable MVC “must be a number” data type validation for a field
I have a Telerik MVC ComboBox which contains a list of locations. The client wants the end user to be able to directly enter new locations into the list.
Upon submitting the form, it should accept a ...
1
vote
3answers
333 views
How to validate that user specified correct Date in ASP.NET MVC?
Is there any simple way to client (and server) side validate Date ?
My idea is to have 3 input fields for day, month and year. I'm using anotated model and AJAX validation scripts to client side ...
1
vote
1answer
387 views
How to validate a dropdownlist populated from the database in ASP.NET MVC3?
I have 2 tables, Person and Nationality. Person has an FK to the Nationality table via NationalityID. In my Create Person form, I've got a dropdown that's populated with NationalityID and ...
1
vote
1answer
252 views
validate DropdownlistFor help
I couldn't get this code working. It's not displaying validation error message when I submit the form.
viewModel
[Required]
public SelectList CountryList { get; set; }
public string ...
0
votes
2answers
55 views
HTTP Post request from different controller actions and ModelState
I have a weird need in an ASP.NET MVC 3 application which blocks my current progress. Here is the case:
I have a little search engine for the products and I render this search engine on multiple ...
0
votes
1answer
40 views
Validating TextBox input for a list that is a property of an MVC3 ViewModel
I realize I'm a little late to the party, but... I'm working in my first MVC project, and have been able to get a handle on most of what needs to be done. Most of the project simply reads data and ...
0
votes
2answers
60 views
MVC 3 validation not working for complex model
I have a UserFormModel which contains a UserModel which has a set of properties with the [Required] attribute set. I have read that MVC 3 out of the box will validate models within models by default. ...
0
votes
0answers
26 views
ASP.NET MVC validation style not being applied to textboxes
The ".input-validation-error" style isn't being applied to textboxes (the style is not being over-ruled) but the error messages are being displayed for the textboxes.
However, that style is being ...
0
votes
2answers
54 views
ASP.NET MVC 3 - Setting null field in DTO when binding to HTTP POST instead of failing
I have an HttpPost controller action that takes in a simple form DTO object.
[HttpPost]
public ViewResult Index(ResultQueryForm queryForm)
{
...
}
public class ResultQueryForm
{
public ...
0
votes
3answers
254 views
How to use asp.net mvc 3 unobtrusive javascript validation with a wizard?
I am using asp.net mvc 3 and want to make use of unobtrusive javascript . I am desiging a form that is quite long and probably would be very overwhelming if not broken up.
I decided to use jquery ...
0
votes
2answers
90 views
Is DataTypeAttribute is a validation attribute For DefaultModelBinder Class
I have just noticed that DataTypeAttribute class is inherited from System.ComponentModel.DataAnnotations.ValidationAttribute.
In terms of ASP.NET MVC DefaultModelBinder class, is DataTypeAttribute is ...
0
votes
0answers
65 views
Sys.Mvc.FormContext in Mvc Validation javascript library. What does it do, why and how is it used?
Looking through MicrosoftMvcValidation.js I see Sys.Mvc.FormContext function which populates fields. I'm trying to understand what it does, why it does it and how it is used?
0
votes
0answers
152 views
Null values when using remote validation in MVC3
I am having a problem with remote validation.
I have a viewmodel with a property on which I have added a Remote validator but when I run the form and enter a string in the text box the value passed ...
0
votes
1answer
74 views
mvc server side validation help
I have one question I am sure someone over here will know the answer for sure.
I am trying to put server side validation for a textbox in MVC website.
Here is what I have:
<% using ...
0
votes
1answer
83 views
Read value of another property in asp.net mvc2 custom attribute?
I have made custom attribute in my asp.net mvc2 project:
[AttributeUsage(AttributeTargets.Property, AllowMultiple = false, Inherited = false)]
public class IsUsernameValidAttribute : ...
0
votes
1answer
84 views
MVC validator for custom object
I have some model for my View and custom object as a property there, like this:
class SomeModel {
public object Data { get; set; }
}
and in View:
@model Blablabla.SomeModel
For example, in ...
0
votes
1answer
99 views
How to return an error to ValidationSummry in MVC 3
I have an idea which I dont know how to implement.
In MVC 3 controller I have an if statement, and I want the controller to return an error message if the if statement fails. And I have a ...
0
votes
1answer
128 views
Validation of List<int> property
I am using datannotations and the server/client side validation stuff in ASP.NET MVC 2. Everything works fine if a class has properties such as:
[Required(ErrorMessage = "whatever")]
String blah;
...
0
votes
1answer
198 views
ASP Client side validation on tab out
I use ajax to submit a form. I have used correct data annotations to validate the inputs. The validations get triggered on the required fields on tab out and even on key up.
How can I control ...
0
votes
2answers
467 views
DRY Remote Validation in ASP.NET MVC 3
I've read David Hayden's great post on MVC 3 Remote validation.
However there is presented what you should do to enable remote (javascript) validation. If the user has javascript disabled the post ...
0
votes
1answer
176 views
Is there a way to use multiple System.Web.Mvc.RemoteAttributes? Getting “Duplicate RemoteAttribute attribute.”
I need to perform two separate validations on a view model property. Apparently, RemoteAttribute can only be applied once per property. This is probably a stupid question, but does anyone know a way ...
0
votes
2answers
939 views
asp.net Validation on DropDownList box
I have a dropdownlist (cboViewAlbums) which has displays album values. The first item is a
Please select an album.... I am trying to use validation which when lb_create_album linkButton is clicked ...
0
votes
1answer
1k views
Why ClientValidationFunction function is not working properly?
<script type="text/javascript">
function clientValidation(sender, arguments)
{
if (arguments.value == "hello world")
arguments.isvalid = true;
else
...
0
votes
1answer
65 views
asp.net mvc related nullable entities
I'm having some problems with Model.IsValid. I am trying to create a model similar to this...
class Article {
int Id {get; set;}
string Title {get; set;}
Category Category {get; set;}
}
...
0
votes
1answer
475 views
ASP.NET MVC 2 Validation: Metadatatype can't be added to standard POCO CLR classes - whats an alternative?
I am using Entity Framework and generating my POCO classes via T4 - these classes inherit from nothing and are very plain and simple (created via template in vs 2010)
I tried using the Metadatatype ...