Try "Randomize"

<!---
Randomize(number)

Randomize() generates a "random" number based on "seed"
value.  By calling Randomize() with a seed value before
using Rand(), you increase the "randomness" of your number

Be sure to check out these related functions:
Rand()
Randomize()
RandRange()
--->

<cfset GoodSeed = (Minute(now())&Second(now()))>

<cfoutput>

Good Seed = #GoodSeed#                          <br><br>
#Randomize(GoodSeed)#                           <br><br>
#Rand()#                                                        <br><br>

<a href="#getfilefrompath(getcurrenttemplatepath())#">reload</a>

</cfoutput>

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm
FAQ: http://www.thenetprofits.co.uk/coldfusion/faq
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to