Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
6answers
2k views

ASP.NET MVC ValidateInput(false) stops working with xVal and [RegularExpression] DataAnnotation

I would like to intercept the "<" character in the form field by a regex validator. I will describe the problem in 3 steps: Step 1: When I try to submit a form with a field containing the "<" ...
18
votes
1answer
2k views

How to use jQuery Validation plugin with metadata and the jQuery Forms plugin (with some xVal as well)

I've been doing some development using the xVal framework for .NET to link up some of the validation rules for models on the server side along with some client side validation using the jQuery ...
10
votes
4answers
1k views

Which validation library for ASP.NET MVC?

I'm trying to decide what validation approach to take for a new ASP.NET MVC project. (And wow there are plenty of options!) The project uses NHibernate, so the first thing I considered was the ...
8
votes
5answers
821 views

Reusing validation attributes in custom ViewModels

When I started using xVal for client-side validation, I was only implementing action methods which used domain model objects as a viewmodel or embedded instances of those objects in the viewmodel. ...
7
votes
6answers
468 views

Best practices for input validation in ASP.NET?

What is the common practice of input validation? In other words do you check for input validation on client-side, on server-side or on both sides? Also, if performance is crucial to me, would just ...
7
votes
4answers
2k views

Validate object based on external factors (ie. data store uniqueness)

Description My solution has these projects: DAL = Modified Entity Framework DTO = Data Transfer objects that are able to validate themselves BL = Business Layer Services WEB = presentation Asp.net ...
6
votes
1answer
166 views

xVal and ASP.Net MVC 2 AddModelStateErrors Problem

I have an application that I've been using xVal successfully on for quite some time. It was recently updated to MVC 2. I use the standard DataAnnotations attributes on my domain models, which also ...
5
votes
3answers
915 views

C# mvc2 client side form validation with xval, prevent post

I'm using xval to use client side validation in my asp.net mvc2 web-application. Despite the errors it's giving when I enter text in a numeric field, it still tries to post the form to the database. ...
5
votes
2answers
744 views

Asp.Net MVC - Change error class name

When I do field validation in Asp.Net MVC, it's generated the following error css classes : input-validation-error field-validation-error Is there a way that I can change the names of the error ...
5
votes
2answers
2k views

ASP.NET MVC Validation Framework when posting via jquery $.ajax?

There is a plenty of very good post and explanations how to implement validation with ASP.NET MVC, and I prefer one of these: xVal Validation with Service layer Data Annotation attributes However, ...
5
votes
1answer
575 views

An example of xVal with ASP.NET WebForms?

This is a two part question. Is it possible to take advantage of xVal's automatic client side validation with ASP.NET WebForms? If so, are there any examples available? I imagine that it would be ...
4
votes
2answers
599 views

xVal in MVC.NET with nHibernate.validator does not fire client validation

I have an ASP.NET MVC Project working with NHibernate and NHibernate.Validator and i'd like to use xVal 1.0 (most recent release). I Added the requested scripts to the project and referenced it in ...
3
votes
1answer
121 views

Is xVal obsolete with MVC 2?

Now that built-in validation is supported with MVC 2 framework, should we be using it instead? Are there any advantages that xVal has over MVC 2 validation? The main reason I ask is that we have a ...
3
votes
1answer
165 views

Regex match numerical range

I am trying to write a simple regex to match a percentage value range 1%-100% Is there a better way to write this? ^([1-9]|[1-9][0-9]|100)%$
3
votes
3answers
704 views

Which MVC Validation Framework

I have been evaluating xVal as framework for validating Entities in the ASP.Net MVC Framework. I have recently discovered that each time a validation rule is broken, xVal cause an excpetion to be ...
3
votes
4answers
505 views

How to add help prompt attributes to Business Objects in MVC and display in View

How can I provide some form of Attribute against my Business Objects in my ASP.Net MVC application so that I can pick up the help texts in the View and have them appear as pop-up hover help texts ...
3
votes
1answer
518 views

xVal, DataAnnotations on the entire class

I have a complete validation on an obeject and am trying to figure out the best way to handle it. Given the following class: public class LetterResponse { public Guid Id {get;set;} public bool ...
3
votes
1answer
353 views

How to get Castle Client Side Validation with xVAl

Has anybody had problems using Castle and Client Side validation? I’ve found that only my numbers (Int, Decimal, Double, etc) gets picked up by ClientSideValidation. Strings, dates, enums and other ...
3
votes
1answer
400 views

xVal and the ViewModel pattern - can it be done?

I've been adding xVal to the NerdDinner app - so far so good, I get client-side validation with jQuery.validate in one line, which is truly beautiful. But I can't seem to get xVal to validate a ...
2
votes
1answer
111 views

ajax.beginform and xVal

I am using Ajax.BeginForm to submit a form ans xVal to enforce validation The problem the ajax post request is being made even when the form has errors on it. I know client-side validation is ...
2
votes
1answer
361 views

MVC ClientSide date validation

I'm using xVal and jQuery for clientside form validation in MVC. A date field annotated with [DataType(DataType.Date, ErrorMessage=...)] is being properly validated if the user types a string that ...
2
votes
1answer
62 views

Using xval to client side validate forms

I am using ASP.NET MVC2 and to validate the forms i use xVal. It seems like the server side validation works fine, but the client side validation doesnt work or atleast doesn't show up. The code i ...
2
votes
2answers
151 views

xVal and Regular Expression Match

I am using xVal to validate my forms in asp.net MVC 1.0 Not sure why my regular expression isn't validating correctly. It does NOT validate with an empty value It does NOT validate with the value ...
2
votes
1answer
209 views

xVal Causing NUnit to Crash when checking ModelState.IsValid

I am trying to run a simple test on a controller in MVC. This controller validates the input using xVal and DataAnnotations. When I run the test (using NUnit via Resharper, NUnit standalone or ...
2
votes
2answers
104 views

How do I determine the source of unpredictable LINQ query results?

I've been working on an application that uses xVal's server side validation with data annotations. We recently ran into errors where the validation messages have been unpredictable for fields that ...
2
votes
2answers
2k views

Auto generating metadata classes for Entity Framework

I am considering using xVal for validation of Entity Framework classes in a MVC application. This involves writing metadata classes as explained in details by Graham O'Neale ...
2
votes
1answer
142 views

How do I validate a property that needs to access a repository in xVal?

I'm trying to use xVal to validate the registration of a new user. I've ran into a buzz saw when trying to implement the logic that checks to see if the user name that the new user is trying to ...
2
votes
1answer
836 views

Disable button on submit with xVal MVC

I have an MVC app using xVal. I am trying to hook into the jquery validation to show a "loading" graphic once the form is valid. I cannot seem to find a way to only show the qraphic when jquery has ...
2
votes
2answers
712 views

Data type validation with xVal

I'm trying to figure out the best way to validate data within a MVC C# app and xVal seemed to be the best fit. However I'm running into a problem with data type validation. At first I was doing an ...
2
votes
1answer
218 views

Will xVal work if the attributes are defined on Interfaces?

I'm wondering if anyone knows if xVal will work as expected if I define my system.componentmodel.dataannotations attributes on interfaces that are implemented by my model classes, instead of directly ...
2
votes
2answers
655 views

Custom ViewModel Class - Not all fields are marked invalid unless a prefix is specified

I have a custom viewmodel inside which I have two fields and one linq2sql entity .. all fields have Validation Attributes attached. Even if all fields are invalid only the fields in the linq2sql class ...
2
votes
1answer
181 views

Xval and Comparsion Operators?

I read on the site that version 0.8 of xVal supports "Support for comparison validators (e.g., “PasswordConfirm” must equal “Password”)" Yet I see no tutorial on how to do this. I am trying to ...
2
votes
1answer
1k views

AJAX Validation Idea - Complete with ValidationSummary & ValidationMessage

I have been looking at many ASP.Net MVC client side validation ideas including xVal. This doesn't provide a ValidationSummary at the moment so I chose to do an AJAX post which loops through ...
2
votes
9answers
2k views

Options for asp.net MVC Validation Framework

I'm thinking of two options right now for model-base validation for an ASP.net project I'm starting: xVal (Steve Sanderson's project) and the Enterprise module that Stephen Walther uses on this page ...
1
vote
0answers
75 views

xVal: Show Error Message for individual fields as well as the Summary

I'm using xVal in my MVC1.0 application and I'm trying to get client side validation to give a summary AND an individual error for each field. I can only get one or the other. Only shows error ...
1
vote
1answer
295 views

xval vs MVC 3.0 validations

I was wondering if anyone has any opinions regarding the usage of xVal or MVC 3.0 model validation? I originally started using xVal because of its ability to validate both client and server side but ...
1
vote
2answers
385 views

livequery not always live when used with jquery.validate

I use jquerylive plugin to add additional css classes to .field-validation-error class like this: $(".field-validation-error").livequery(function () { $(this).addClass('ui-state-error ...
1
vote
0answers
27 views

Does xVal only work with annotations? Can I not keep entities POCO?

I am not keen to use data annotations on my entities, but would like to consider xVal for validation. Can this be done?
1
vote
1answer
87 views

Disabling xVal for Hidden Fields

In my MVC application, I've got a page where I use a few hidden fields to make some calculations under the hood. This page is loaded with xVal validations to make the data coherent. But the problem is ...
1
vote
2answers
79 views

what would be the best method to override the validation of data in an mvc application

I have a very large form I need the user to complete. They need to be able to save their progress whether valid or not. When they have come back at a later time, they can update and make valid - ...
1
vote
1answer
139 views

asp .net MVC 2.0 xval Validation element

I got one problem with showing error message to element. Is there any option to turn on messages on place where is Html.ValidationMessageFor(model => model.ConfirmPassword). Becsoue for me it isn’t ...
1
vote
2answers
297 views

How to conditionally disable client side validation in xVal?

I am using xVal in a ASP.NET MVC project. One of the forms has two buttons and i want to disable the client side validation when one of the buttons is clicked. Is there a way to conditionally disable ...
1
vote
0answers
58 views

Using xval with fields containing periods

I have been using xVal with success for a while but this evening ran into an issue where a field containing a period would not be validated (client or server-side). I am using ASP.NET MVC2 and need to ...
1
vote
1answer
566 views

Activate jQuery accordion section with validation errors

I am using xVal for client validation in an ASP.NET MVC application. Since I have too many fields in one of the forms, I split it into sections and used jQuery accordion to display one section at the ...
1
vote
1answer
160 views

Exclude ID property from xVal validation

Can I exclude the valudation rule for the ID property? Right now I get the following validationerror message when I submit the form: The Id field is required.
1
vote
1answer
447 views

How can I use a custom ValidationAttribute to ensure two properties match?

We're using xVal and the standard DataAnnotationsValidationRunner described here to collect validation errors from our domain objects and view models in ASP.NET MVC. I'd like to have a way to have ...
1
vote
1answer
116 views

Can xVal be used for traditional Web forms model?

It appears that xVal fits more into a MVC model. Can it be used for traditional Web forms model? I am currently considering MS Validation block and .NET validation framework. What other validation ...
1
vote
1answer
357 views

ASP.NET MVC Wizard and xVal validation

I'm building a wizard-style application in ASP.NET MVC and is wondering if you have any feedback on my current approach. Each step of the wizard is a partial view (user control) wrapped by a DIV. All ...
1
vote
1answer
105 views

What's the best way of using xVal when using the Entity Framework?

What's the best way of implementing xVal when using the Entity Framework? I've been using this approach but I'd like to know if there's a better way of doing it. Also I'd like to know if there's a ...
1
vote
2answers
526 views

Validate a bool that must be true using xVal

I have a business requirement to enforce a check box on a HTML form to be marked as true before allowing submission of the form. I can return the user to the form if this box has not been checked ...

1 2 3