0
votes
1answer
13 views
using same ascx control twice while using Register (ASP.NET)
I'm using Register at the top of the page to register an ascx control, now the thing is I want to use this control twice on the page.
Now, the problem is when I hit buttons of on …
0
votes
2answers
23 views
XmlDocument not performing validation?
I have this function for validate xml messages against external schema file:
private bool IsValidMessage(string message, XmlDocument xDoc)
{
this.valid = true;
byte[] b …
1
vote
1answer
40 views
Name Hypocorism List
Does anybody know of a public list of name hypocorisms (a contracted form of a given name, such as Tony from Anthony, Rosy for Rosemarie or Vicky from Victoria)?
0
votes
1answer
27 views
Ruby on Rails ActiveRecord Validation
I would like to validate attributes in a function like this
class User < ActiveRecord::Base
validate :check_name( :name )
def check_name( name )
... if name is invali …
0
votes
5answers
77 views
Fix a warning thrown by HTML Validator
Hi
I have some JavaScript code in my php website.
This code uses jQuery, and builds a < select > menu using ajax calls.
Here is the code
sel.append('<option value="' + data …
0
votes
1answer
19 views
How to handle Focuschangelistener in blackberry for this situation?
I am having three EditField i have a set focuslistener for the second editfield alone. when the focus is lost i am checking whether the field is empty or not if the field is empty …
0
votes
2answers
30 views
Is IDataErrorInfo ignored during model validation in MVC 2?
I currently migrated my project to MVC 2 and IDataErrorInfo doesn't seem to work when using default model binding and validation. Is it cut out?
1
vote
1answer
18 views
Configuration Validation
I'm implementing a somewhat complex configuration section for a system monitoring project:
<monitoring>
<components>
<component name="Remote Server"
…
0
votes
2answers
19 views
Parameterize ValidationRule in WPF
I've only scraped the surface of validation in WPF and have come across a scenario that is likely fairly common: I have a TextBox whose value needs to be validated against a variab …
0
votes
3answers
28 views
How to force a control to validate itself?
Hi,
I've a winforms with some controls and an ErrorProvider. The control's Validating events are used to validate the data and report the error to the ErrorProvider if there is an …
3
votes
1answer
24 views
How to validate a select tag in struts 2 framework
Hi people,
I am a newbie into programming and i am currently employed as a junior programmer.
I am currently having some problems validating the select tags in one of my forms.
Wha …
1
vote
1answer
35 views
Rails (RoR) ActiveRecord custom validation
I'm trying to extend ActiveRecord with the custom validation method validate_as_email so i could use it like this:
class User < ActiveRecord::Base
validates_as_email :email
e …
0
votes
4answers
48 views
Validate date textbox
I'm using the following code to check if a valid date has been typed into a textbox:
public bool ValidateDate(Control ctrl)
{
if (!string.IsNullOrEmpty(ctrl.Text))
{
…
1
vote
2answers
44 views
validation with asp.net using javascript…
i have to validate listbox for maximum of three items to select by the user...
i have write code that works fine...
but if i'll use the same code in customer validator in asp.net …
0
votes
2answers
17 views
Which validator should be used to implement login in Symfony?
Currently, my login form looks like this,
class LoginForm extends BaseFormPropel
{
public function setup()
{
$this->setWidgets(array(
'login_id' => new sfWidge …
