Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
50 views

COBOL Data Validation for capital letter?

I'm in my second quarter of college and taking "Advanced COBOL" we just received an assignment that requires us to code in some validation procedures for different data. I have everything done except ...
4
votes
2answers
286 views

Does the DataTypeAttribute on a model do validation in MVC 3?

The default ASP.net MVC 3 Internet Application template includes the following model: public class RegisterModel { [Required] [Display(Name = "User name")] public string UserName { get; ...
4
votes
2answers
464 views

ASP.NET MVC2 and JSON model binding with validation to an action method

Phil Haack's blog entry describes this process using ASP.NET MVC 2's futures and Crockford's json2.js. John Resig also recommends using Crockford's json2.js in this article regarding "use strict";. ...
3
votes
3answers
303 views

How to remove dependency on System.Web.Mvc within domain model assembly containing POCOs

I have an assembly generated using POCO template using Entity Framework (e.g. "Company.Models.dll").Besides generated POCOs I also have "follow up" partial classes that define meta data using ...
3
votes
2answers
213 views

Guide to international postal address formats

Where can I find a guide to different postal address formats that are used in the major countries in the world? For example, in the U.S. one format is: street_number street_name street_type city, ...
3
votes
2answers
1k views

How to limit cell value in Excel to options from another sheet?

In Excel (2003), I want to limit the selection of values in a cell to allowable values from another spreadsheet. For example, in the sheet "Currencies" I have EUR,1.1 GBP,1.0 USD,1.5 (That's two ...
2
votes
1answer
38 views

TryValidateProperty not work with generic function

UPDATED: when i executing Unit Test project and then it will return Was unhandled This test result also contained an inner exception instead of "Assert.IsTrue failed. The Description field is ...
2
votes
0answers
283 views

Why does the Html.HiddenFor generate the data-val- attributes

The standard output of @Html.HiddenFor(model => model.Id) is <input data-val="true" data-val-number="The field Id must be a number." data-val-required="The Id field is required." id="Id" ...
2
votes
3answers
184 views

Check if a JTextField is a number

quick question: I have a JTextField for user input, in my focus listener, when the JTextField loses focus, how can I check that the data in the JTextField is a number? thanks
2
votes
1answer
279 views

Excel VBA: Named range + string value as validation list?

Alright, basically what I want to do is set a data validation list for a specific cell. This list should contain a certain range of cells I've specified PLUS a string value added to it. I have a ...
2
votes
1answer
134 views

RTF linter wanted

Does anyone know of a linter for RTF files? I am writing an simple RTF export tool for a word processor. I've got to the stage where my generated files now load into OpenOffice and seem to work --- ...
2
votes
1answer
350 views

ASP.NET Data Annotation: How to validate a List of string?

Data annotation to validate an inbound model in MVC: public class ValidNumber { [RegularExpression(@"^\d+$", ErrorMessage = "*")] public string number { get; set; } } Would I need to create ...
2
votes
2answers
241 views

Spreadsheet::WriteExcel - data_validation

#! /usr/bin/env perl use warnings; use 5.012; use Spreadsheet::WriteExcel; my $workbook = Spreadsheet::WriteExcel->new( 'test_test.xls' ) or die $!; my $sheet = $workbook->add_worksheet(); my ...
2
votes
3answers
112 views

Where to validate user input in a program?

Let's say I have to implement a program for a small clinic company that allows its users(this is, the doctors) to schedule consults, log clients medical histories, etc. So, this will probably be the ...
2
votes
1answer
127 views

ASP.NET MVC 2 Data Validation: Does this carry from a DomainModel to a ViewModel?

Given my understanding of MVC and DDD (critique as necessary): Domain Models can be created by Factories, and persisted by Repositories. These are POCO objects. View Models contain partial or ...
2
votes
6answers
481 views

Where to perform the data validation for a desktop application? On the database or in code?

In a single-user desktop application that uses a database for storage, is it necessary to perform the data validation on the database, or is it ok to do it in code? What are the best practices, and if ...
1
vote
0answers
142 views

asp.net mvc validation messages localization for numbers (data-val-number)

Main question is: Where 'data-val-number' message comes from? From what validation rule? We are localizing our ASP.Net MVC 3 application. For localizing validation messages we decided to use ...
1
vote
2answers
105 views

cleaning user input in asp.net (mvc3) to make it safe

I need to accept user input (comments) in an asp.net mvc3 web application, which I then wish to re-display in the UI. I'd like to clean any XSS/script inclusion/hacking attempt/malicious code out of ...
1
vote
1answer
124 views

how to add xml schema to coldfusion web service

I am creating a new web service in which the data format should have to made strict using XMLSchema. But I could not find a way to apply detail xml schema in Coldfusion web service the web service ...
1
vote
2answers
103 views

Data validation optimisation

I am currently working on a student management system which track students and semesters at which they take classes. I have a feature that allow the users to import data through an Excel file. ...
1
vote
3answers
672 views

VBScript Data Validation - Numeric 1 Results in Infinite Loop

DISCLAIMER: I'm still an uber-n00b with programming concepts and know just enough VBS to hurt myself, so I'm likely to slur/slaughter some of the terms/concepts/ideas that are entailed with this ...
1
vote
7answers
403 views

How to validate data in C# interface fields?

I have a few classes that implement a certain interface. Is there any way, at the interface rather than implementing-class level, to define data validation rules? If not, what would be a suggested ...
1
vote
3answers
130 views

form validation in php

The question is, how do you prevent erroneous data from entering into the mysql table.Can you give me the code.or the logic.Before the insertion query is executed?
1
vote
1answer
298 views

Override data validation on one django form element

I have a select list dropdown box on my form that is populated with data from a Model (Directors). The value of this dropdown doesn't need to be saved; it is really only used to dynamically trigger ...
1
vote
3answers
383 views

Which is the best way to validate data in a JTextField?

I tried this, but the JTextField keeps showing the last key entered. What I'm I doing wrong?... private void codigoKeyTyped(java.awt.event.KeyEvent evt) { //codigo is the JTextField String s ...
1
vote
1answer
221 views

ASP.NET MVC 2: Use [Data Annotations] to reference methods that could feed DDL lists?

A generally accepted way to pass all data to a view is to have a single data model with references to both your domain model and additional data for things like drop down lists (DDL). However, ...
1
vote
1answer
201 views

XAML: Refer to StaticResource in plain XAML? (without markup extension)

I am setting a validation rule on a series of textboxes. I'd rather not create a new instance of my custom validation rule for each TextBox... <Window.Resources> <my:IsIntegerRule ...
1
vote
2answers
126 views

Data validation: fail fast, fail early vs. complete validation

Regarding data validation, I've heard that the options are to "fail fast, fail early" or "complete validation". The first approach fails on the very first validation error, whereas the second one ...
1
vote
1answer
201 views

Capturing International Personal Data (Name, Address, Phone, etc) ASP.NET

I am looking for the best way to capture and validate US & international personal data. I have to use ASP.NET 2.0 (vb.net) and no 3rd party web services. This are all client restrictions. The ...
1
vote
1answer
57 views

Less Linq to SQL and more Repository way to provide Rule Violations?

In the nerd dinner, they use partial keywords to overload the Linq to SQL classes to embed the data validation. Let's say you want to data validate exclusively in the repository. Is there some ...
1
vote
1answer
110 views

Data authorisation using WCF web services

I am new to web development and WCF. I am reading some basics about it and most of the things seem very interesting. I have read that WCF services can be exposed using SOAP and other protocols. I was ...
0
votes
1answer
43 views

MVC web app - where to ensure data validity?

I'm using Spring 3 but this question is more widely applicable, I think. I have a web app with a front controller (a Spring DispatcherServlet). From there a service is called which in turn uses a ...
0
votes
1answer
43 views

How ValidatesOnExceptions works

based on this example http://msdn.microsoft.com/en-us/library/system.windows.data.binding.validatesonexceptions.aspx It seems that ValidatesOnExceptions is responsable to catch the custom exception ...
0
votes
2answers
45 views

Right HTTP status code to wrong input

What is optimal HTTP response Code when not reporting 200 (everything OK) but error in input? Like, you submit some data to server, and it will response that your data is wrong using 500 looks more ...
0
votes
2answers
50 views

How to find wheather a value is already available in a textbox or not using jquery

Let us consider i am having a text box where i can enter user names separated by commas. EDIT: In Detail: I am having a text box and a search_button nearby. When i click on the search box list of ...
0
votes
0answers
52 views

How do I perform tight validation on Desktop application using linq to sql as DAL?

I am building a database application, where user uses windows form to enter data and my backend is persisted using LINQ to SQL as DAL layer. The problem is in implementing the validation. Currently, ...
0
votes
2answers
124 views

Bounds / Domain on Units of Measure

I find the idea of F# Units of Measure very appealing. However, it is often the case that some units have a particular domain they live in. For instance, a distance is a positive number, a temperature ...
0
votes
2answers
378 views

Manually wiring up unobtrusive jquery validation client-side without Model/Data Annotations, MVC3

After searching and experimenting for 2 days I relent. What I'd like to do is manually wire up injected html with jquery validation. I'm getting a simple string array back from the server and ...
0
votes
0answers
76 views

How to remove one or more fields from the DataForm.Validating() event in Silverlight 4?

I have a data form that is bound to an object whose properties are decorated with System.ObjectModel.DataAnnotation attributes for validaton. The problem I am facing is that some properties of this ...
0
votes
1answer
137 views

Excel 2007: keep cell style as definied from data validation sheet cells

in Excel, how do you do to keep cell style in a column with data validation list from another sheet? I have a sheet with a list of choices, each choice being a cell with it's own style (different ...
0
votes
1answer
81 views

How could I create a custom behavior with datavalidation in wpf?

I want to make a WPF control that will perform a custom behavior when validation fails (IE turn blue or change an arbitrary DP on the control).
0
votes
1answer
86 views

WSDL and type validations

Since WSDL specifies a section for type definitions, I wonder how this type definitions are enforced so that the message exchange will fail when the contents of the messages don't match the requested ...
0
votes
1answer
64 views

What are the possible ways to ensure the mysql transactions complete successfully?

Let's say that you have 3 related tables and you have to do 3 mysql queries to insert/update its values. If one of them fails or inserts an unappropriate value is there a way to undo/rollback the ...
0
votes
2answers
78 views

Problem with updating record in database

I have problem to update user data in cakephp. When I submit form I have this data in $this->data: Array ( [User] => Array ( [first_name] => Dusan ...
0
votes
2answers
90 views

Intercept data validation failures on submitting a form

I'm writing a form in ASP.NET MVC 3 (but things can be similar in other environments). On submitting a form, I want to disable the page, because server processing is a bit long, so I want to avoid the ...
0
votes
2answers
425 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
2answers
239 views

Why does the modulo function in excel return the divisor?

I have an Excel validation formula which worked fine in Office '03, '07, but is failing in 2010. Did they change the definition of MOD recently? In 03/07 the following returns zero: =MOD(1, .05) ...
0
votes
1answer
391 views

Why is CompareAttribute in the MVC namespace and not the DataAnnotations namspace?

B"H MVC 3 includes a new validation attribute called CompareAttribute. But why is this validation attribute in the mvc namespace and not with all of the other validation attributes in the ...
0
votes
2answers
236 views

Checking Excel 2003 data validation

The following bit of VBA will highlight any cells in a sheet with data validation errors: Sub CheckValidation(sht As Worksheet) Dim cell As Range Dim rngDV As Range Dim dvError As Boolean On Error ...
0
votes
2answers
322 views

ASP.NET MVC 2 Data Validation: Make C# Regex work for both C# and JavaScript simultaneously?

I have this C# regex: ^\s?((?<qty>\d+)\s?/)?\s?[$]?\s?(?<price>\d{0,2}(?:\.\d{1,2})?)\s?$ and use MVC's data validation at the client. JavaScript says this regex is invalid, although ...

1 2