Stories recently tagged with 'Validation' Subscribe to this feed

ASP.NET MVC 2.0 Client validation exposed (code-clarity.blogspot.com)

submitted by hkurabkohkurabko(20) 1 month, 14 days ago

Describes how to add validation rules in MVC 2.0 from code. Yeah, data annotation and rules in model is cool. But I have found no info about how to add client validation rules from code, it can be useful in many cases. So, I go to Reflector and try to find some way to do this. read more...

add a comment | category: | Views: 19

tags: another

Validation Techniques in ASP.NET MVC (asliborsky.blogspot.com)

submitted by ASliborskyASliborsky(85) 1 month, 23 days ago

Article described general validation techniques that could be used in ASP.NET MVC. It is based on real project experience and explains the peculiarities and drawback of some approaches to help developers and architects to choose the best one for them. read more...

add a comment | category: | Views: 17

tags: another

Advanced validation techniques in ASP.NET MVC (asliborsky.blogspot.com)

submitted by ASliborskyASliborsky(85) 1 month, 25 days ago

Article fully compares different validation techniques which could be used in ASP.NET MVC trying to help in choosing the best one for some projects. It's a first article from the series about validation written by AST.NET MVC specialists from Qulix Systems. read more...

add a comment | category: | Views: 12

tags: another

Validating ASPX validation controls in java script (praveenbattula.blogspot.com)

submitted by praveenbattulapraveenbattula(395) 3 months, 28 days ago

Some times we may come across requirements like, we need to validate the ASPX validation controls in java script. For example, on a page we have both ASPX controls like text boxes, drop down lists etc and along with them some html text boxes or select drop down, then we need to validate the form. When you hit submit we need to validate whether form is valid or not. As we use ASP.NET validation controls for .NEt controls, the validation fires automatically. But, what about HTML controls? We need to write our own logic to validate the controls. So, If you want to tell this form is valid then you need some logic to validate both asp.net server side controls and html controls and both are valid then only say form is valid. Take a look at here to solve that problem. read more...

add a comment | category: | Views: 7

tags: another

Jquery datepicker problem on date select in IE - 'length' is null (praveenbattula.blogspot.com)

submitted by praveenbattulapraveenbattula(395) 4 months, 8 days ago

Jquery datepicker problem on date select in IE - 'length' is null or not an object in ASP.NET. This is coming because of validation problem. Please check this for the solution. It is working great. read more...

add a comment | category: | Views: 35

tags: another

ASP.NET MVC, TDD and Fluent Validation (richarddingwall.name)

published 5 months, 20 days ago, submitted by JemmJemm(9400) 5 months, 21 days ago

"Yesterday I wrote about ASP.NET MVC, TDD and AutoMapper, and how you can use them together in a DDD application. Today I thought I would follow up and explain how to apply these techniques to another important (but boring) part of any web application: user input validation." read more...

add a comment | category: | Views: 240

tags: another

Apply the same CSS class to all validators in a web project (john.rummell.info)

submitted by johnrummelljohnrummell(1255) 5 months, 24 days ago

A simple script that allows you to apply a css class to all validators in a web project. read more...

add a comment | category: | Views: 15

tags: another

xVal with WebForms Part 2 (john.rummell.info)

submitted by johnrummelljohnrummell(1255) 5 months, 28 days ago

Another look at how to use xVal like validation goodness with traditional ASP.NET WebForms. read more...

add a comment | category: | Views: 20

tags: another

xVal with WebForms (john.rummell.info)

submitted by johnrummelljohnrummell(1255) 6 months, 24 days ago

I finally found some time last night to see what it would take to get xVal working in an ASP.NET Web Application Project. After a few hours I had something. I only needed to add two classes on top of xVal, DataAnnotationsValidationRunner and ModelValidator. read more...

add a comment | category: | Views: 19

tags: another

ASP.NET MVC Validation Refresh: Best Techniques & Frameworks (goneale.com)

submitted by gonealegoneale(1040) 7 months, 15 days ago

I just wanted to do a “refresher” post regarding ASP.NET MVC validation as many things have changed over the last couple of months and there is a lot of information out there. I wanted to aggregate my known validation options and recommend them in one tabular list. read more...

add a comment | category: | Views: 49

tags: another

TNValidate - A Fluent Validation Library for .NET (tnvalidate.codeplex.com)

submitted by pheavenpheaven(430) 8 months, 28 days ago

TNValidate is a fluent validation library for .Net. It allows you to write validation logic in a form that is readable both by programmers and non-programmers, but still entirely in your .Net language. TNValidate has plenty of built-in validation rules, but also provides an extension mechanism to allow you to easily add your own without having to modify the library itself. The library is released under the MIT License. read more...

add a comment | category: | Views: 44

tags: another

Use MetadataType Attribute with ASP.NET MVC xVal Validation Framework (goneale.wordpress.com)

submitted by gonealegoneale(1040) 11 months, 5 days ago

In this article I discuss encorporating the MetadataType attribute to allow usage with LINQ2SQL classes. Most of us would have heard of Steve’s brilliant new swanky ASP.NET MVC Validation Framework coined xVal which allows you to use any validation component you wish. read more...

add a comment | category: | Views: 46

tags: another

Diving in NHibernate.Validator (fabiomaulo.blogspot.com)

published 11 months, 14 days ago, submitted by fabiomaulofabiomaulo(605) 11 months, 20 days ago

Surfing in the NET, to find some NHibernate.Validator (NHV) example, I saw that there are various things not so clear about how NHV is working. In this post I’ll try to give you a more deep explication.... read more...

1 comment | category: | Views: 213

tags: another

Fluent Validation With ASP.NET MVC and Db4o (www.tunatoksoz.com)

published 1 year ago, submitted by tehliketehlike(995) 1 year ago

In this post, Tuna tries to implement validation that uses Fluent Validation as its validation framework. The approach he has taken is to apply validation rules at persistence level. read more...

add a comment | category: | Views: 255

tags: another

ASP.NET MVC Validation - The Definitive Guide (in my eyes) (goneale.wordpress.com)

published 1 year ago, submitted by gonealegoneale(1040) 1 year ago

After trying a ton of techniques, I bring you the tried & tested definitive guide to ASP.NET MVC validation utilising both CLIENT (jQuery validator plugin) and SERVER validation ready to go with strong object model validation AND compatible with LINQ 2 SQL. What more could one want?! read more...

add a comment | category: | Views: 420

tags: another

ASP.NET MVC Validation - The Definitive Guide (in my eyes) (goneale.wordpress.com)

published 1 year ago, submitted by gonealegoneale(1040) 1 year ago

After trying a ton of techniques, I bring you the tried & tested definitive guide to ASP.NET MVC validation utilising both CLIENT (jQuery validator plugin) and SERVER validation ready to go with strong object model validation AND compatible with LINQ 2 SQL. What more could one want?! read more...

add a comment | category: | Views: 420

tags: another