skip to main
|
skip to sidebar
The all purpose blog
Monday, October 27, 2008
To Check if an input contains any afphabetic values
function HasAlpha(Txt)
{
strLen = Txt.length;
for(i=0; i < strLen;i++)
{
if((Txt.charAt(i)<"0") || (Txt.charAt(i)>"9"))
{
return true;
}
}
return false;
}
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
Blog Archive
►
2011
(14)
►
December
(2)
►
October
(6)
►
September
(4)
►
August
(1)
►
February
(1)
►
2010
(8)
►
April
(1)
►
March
(5)
►
February
(2)
►
2009
(39)
►
October
(8)
►
September
(2)
►
August
(2)
►
July
(2)
►
May
(1)
►
April
(5)
►
March
(14)
►
February
(4)
►
January
(1)
▼
2008
(69)
►
December
(5)
►
November
(8)
▼
October
(9)
To Check if an input contains any afphabetic values
How to open sql Connection ?
How to iterate through datagrid items with paging ?
How to inherit from a class in c# ?
How to get element in child window in javascript ?
Export Data From DataGrid To Excel
Error Handling In Sql Server
Difference inline and code behind
Difference Between Varchar And NVarchar
►
September
(9)
►
August
(38)
About Me
Mahmad Khoja
Khoja Mahmadhusen.A Software Developer (BCA,MscIT,MCP 2.0).
View my complete profile
No comments:
Post a Comment