Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

porting from asp to aspx

Status
Not open for further replies.

shifting

MIS
Apr 14, 2005
4
US
hi ppl,,
im trying to port from asp to aspx and i keep on getting this compilataion error : Line 18: Function numCheck(theNumber).
can someone pls tell me wht this means and how best i can reslove this problem

im a rookie whn it comes to this hope you bare with me .thx
 
hi this is the function

Function numCheck(theNumber)
'default value to start
blnvalidat = false
'check to make sure something was input
if len(thenumber) >0 and len(thenumber) < 7 then
'non-empty input!
blnvalidate = true
else
blnvalidate = false
end if

numCheck=blnValidate
End Function
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top