home *** CD-ROM | disk | FTP | other *** search
- <!--- This example shows the use of IsNumeric --->
-
- <HTML>
-
- <HEAD>
- <TITLE>
- IsNumeric Example
- </TITLE>
- </HEAD>
-
- <BASEFONT FACE="Arial, Helvetica" SIZE=2>
- <BODY bgcolor="#FFFFD5">
-
- <H3>IsNumeric Example</H3>
-
- <CFIF IsDefined("form.theTestValue")>
-
- <CFIF IsNumeric(form.theTestValue)>
- <H3>The string <CFOUTPUT>#DE(form.theTestValue)#</CFOUTPUT> can be converted to a number</H3>
- <CFELSE>
- <H3>The string <CFOUTPUT>#DE(form.theTestValue)#</CFOUTPUT> cannot be converted to a number</H3>
-
- </CFIF>
-
-
- </CFIF>
-
- <FORM ACTION="isnumeric.cfm" METHOD="POST">
- <P>Enter a string, and discover if
- it can be evaluated to a numeric value.
-
- <P><INPUT TYPE="Text" NAME="TheTestValue" VALUE="123">
-
- <INPUT TYPE="Submit" VALUE="Is it a Number?" NAME="">
-
-
- </FORM>
-
-
-
- </BODY>
-
- </HTML>
-
-