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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how to display a 16 digit number

Status
Not open for further replies.

tnsenthil

Programmer
May 11, 2002
5
IN
Hi

this is my program


<cfloop index=&quot;c&quot; from=&quot;1111111111111111&quot; to=&quot;9999999999999999&quot;>

#c# </cfloop>

The output is comming some thing like this 1.oooE.

but i want to display a 16 digit number between the given range.tell me a solution.
 
surround you #c# with the numberformat function

like:

<cfoutput>
#NumberFormat(c,&quot;9999999999999999&quot;)#<BR>
</cfoutput>

hope this helps !
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top