This is a little ASP work that will give back an irregular number between two numbers. It will takes two numbers (most extreme and least) numbers and create an arbitrary number inside of that range. It will geenrate an arbitrary number each time the capacity is called. Entirely helpful capacity for universally useful use where an irregular number is required in ASP.
'*******************************************************
'* MYCPLUS Sample Code - http://www.mycplus.com *
'*
'* This code is made accessible as a support of our *
'* guests and is given entirely to the *
'* motivation behind outline. *
'*
'* Please guide all request to saqib at mycplus.com *
'*******************************************************
"
'Capacity to Return a Random number with in an extent
"
Open Function RandomNumber(MaxValue,MinValue )
On Error Resume Next
Randomize Timer
RandomNumber = Int((MaxValue - MinValue + 1) * Rnd) + MinValue
End Function