hi
my problem is, i want to validation two controls in custom validation
please any body tell me how i am perform this thing.
--------------------------------------------------------------------------------
my code in javascript is
but this does not validate
Loading
Bechir BejaouiPosted Aug 31, 2008, 5:36 PM
site1
or simply by google it Regualr expression + C#
use the IsMatch method of the Regex class
if(Regex.IsMatch(regular expresion, text or expression to check))
{
take action 1
}
else
{
take action 2
}