validation

ASP.Net How to enforce the HTTP get URL format?

[Sorry about a messy question. I believe I am targeting .Net 2.0 (for now)] Hi, I am an ASP.NET noob. For starters I am building a page that parses a URL string and populates a table in a database. I want that string to be strictly of the form: http://<server>:<port>/PageName.aspx?A=1&B=2&C=3&D=4&E=5 The o...

jQuery Validation required returns false and still validates the input

I have a select box that is default to nill But still in required I use a function that always returns false and validation stills validates my select dob_year: {required: function(element){return false;}}, Is marked as valid, no matter what is returned. Any clue? jQuery validation plug-in 1.7 jQuery 1.4.2 jQuery UI 1.8 <select nam...

How to combine mvc2 client side validation with other client side validation?

I have a page using mvc2 with client side validation. The client side validation is provided by Microsoft Ajax mvc validation script. This does very well to validate all fields that are related to the model. I also have fields that are never sent to the server such as the confirm password value, and the accept agreement. For these fie...

How to validate the background color of SPECIFIC rows in ListView

How to validate the background color of SPECIFIC rows in ListView in vb.net? ...

How to use error provider at run time along with associating any control to validate

I am trying to create a Validation in a reusable fashion. Purpose: Make the validation control reusable. Error Provider should associate with control passed dynamically and can be set or cleared at run time. When user press OnClick event then all the controls gets validated with their own Error Providers. public bool IsFieldEmpty(re...

c# Validation approach

The scenario is like this: There are 4 controls, two drop downs, two date pickers and some validation rules. One is master drop down Depending upon the value in master drop down, some validation rule will be applied on the two date pickers and the other drop down control. This validation rules will trigger if user changes value in any ...

How to avoid saving a blank model which attributes can be blank

Hello people, I have two models with a HABTM association, let´s say book and author. class Book has_and_belongs_to_many :authors end class Author has_and_belongs_to_many :books end The author has a set of attributes (e.g. first-name,last-name,age) that can all be blank (see validation). validates_length_of :first_name, :maximum...

Cannot clear the form after Submit using the Validation plugin in jQuery

Hello, I an quite new to jQuery and I have a problem while trying to create a form. I am using the Validation plugin for validate the email (one the form's field). When I click the Submit button I want to call my own function because I want to save the data in an XML file. This is my button: (as I understood the plugin uses "submit" f...

PHP - HTML Purifier - hello w<o>rld/world tutorial striptags

I am just looking into using HTML Purifier to ensure that a user-inputed string (that represents the name of a person) is sanitized. I do not want to allow any html tags, script, markup etc - I just want the alpha, numeric and normal punctuation characters. The sheer number of options available for HTML Purifier is daunting and, as far...

how to implement Form Validation in MasterPage using ASP.Net WebForm (bassistance.de form validation)

if i have a single .aspx page my form validation is working fine but if i have masterpage and i have added all .js and .css file in the masterpage header and when i run then validation does not work, any idea how can i achive that? PS: i am using Bassistance.de form validation <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="v...

SelfValidation in DataAnnotations?

With Validation Application block, there's the following functionality: Creating Custom attributes Creating SelfValidation on the type Ability to read from external config file I plan to use the DataAnnotations to replace the Validation application block. Are the above possible with DataAnnotations? If so, how'd I implement them? An...

Whats happening to my HTML?

I am making changes to my website, and I just noticed that things look different. In IE, the content doesnt center, theres a margin on my content, and the font looks bigger in chrome.. I ran it through Yahoo's HTML validator and the error I get is line 1 - Error: character "" not allowed in prolog. I believe that there may be some sort...

implementing ValidationMessageFor

I was working on migrating MVC1 app to MVC2 today and i have come across a problem while changing the ValidationMessage to ValidationMessageFor implementation. The below is the selectlist in my View <%=Html.DropDownListFor(model => model.SecurityQuestions[0].Question, "Some Security question", new { @class = "form_element_select" })%>...

Disable/modify ASP.NET code validation in Visual Studio

I am wondering if there is a way to modify the scheme Visual Studio (2008) uses for validating ASP.NET code. I can find .xsd files with schemes for xhtml, xml, etc., but the scheme for ASP.NET code seems hard-coded somehow. I also can't find any settings to change the scheme or even disable the validation altogether. Anyone any idea? T...

C# WinForms ErrorProvider Control

Hi Does anyone know if there is a way to get a list of controls that have the ErrorProvider icon active. ie. any controls that failed validation. I'm trying to avoid looping all controls in the form. I'd like to display some sort of message indicating how many errors there are on the form. As my form contains tabs I'm trying to make...

Validate site/domain via javascript

I have a standard html form where the user can specify a website/domain: favourite website: [ ] I expect the user to type things like: [www.google.com] [www.yahoo.com] [www.example.co.jp] I want to validate the domain/site via javascript so if a user had typed something wrong: [www...google.com] [www.-example.com] I ...

Min Length Custom AbstractValidationAttribute and Implementing Castle.Components.Validator.IValidator

I see with the Castle validators I can use a length validation attribute. [ValidateLength(6, 30, "some error message")] public string SomeProperty { get; set; } I am trying to find a MinLength only attribute is there a way to do this with the out of the box attributes? So far my idea is implementing AbstractValidationAttribut...

JQuery validate plugin(bassistance) dependency with selectbox

I have a select box and an input text. The input text is hidden by default. If I select "Other" in select box, the input text will show. Here I want to apply the dependency validation. If the the selected text is "Other", then the input text should be required. My code shown below: $(document).ready(function () { $("#customer-registrat...

Is it ok to call specifications from an aggregate factory for validation, or does that validation call belong in a unit test (DDD)?

I have created a factory and a set of specifications to create and validate an aggregate root. Currently I have some tests for the factory that call the specifications on the product of the factory, but I'm wondering if that's enough. It might be better from a design perspective to couple the factory to the specifications of it's produ...

Convert input to integer before save in rails

Hello, i have a set of select inputs representing a users birthday: birthyear, birthmonth and birthday. And i want to validate birthyear like this: validates_inclusion_of :birthyear, :in => Date.today.year-50..Date.today.year-12 So the user can be at least 12 years but at most 50 years when they are registering. But my problem is th...