-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I am developing a web application where I would like to perform a set of validations on a certain field (an account name in the specific case).
I need to check that the value is not empty, matches a certain pattern and is not already used.
I tried to create a UserControl that aggregates a RequiredFieldValidator…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Eariler I happily used the following code for creating form elements (inside Zend_Form descendant):
//Set for options
$this->setOptions(array(
'elements' => array(
'title' => array(
'type' => 'text',
'options'…
>>> More
-
as seen on Code Project
- Search for 'Code Project'
This articlicle digs deep into ASP.NET validators and discuss few case studies which may be a boon for any project
>>> More
-
as seen on Dot net Slackers
- Search for 'Dot net Slackers'
This articlicle digs deep into ASP.NET validators and discuss few case studies which may be a boon for any project...Did you know that DotNetSlackers also publishes .net articles written by top known .net Authors? We already have over 80 articles in several categories including Silverlight. Take a…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm following a Flask tutorial from http://code.tutsplus.com/tutorials/intro-to-flask-adding-a-contact-page--net-28982 and am currently stuck on the validation step:
The old version had the following:
from flask.ext.wtf import Form, TextField, TextAreaField, SubmitField, validators, ValidationError
class…
>>> More