ctod( ) Function

Description:
  The ctod() function converts the string date cDate to it's equivalent numeric Julian date.  

Syntax:
  retval = ctod( cDate )

Parameters:
  string: cDate A date in the format "MM/DD/YY" or "MM/DD/YYYY".
  numeric: retval The Julian date for the date cDate.

Platforms:
  Windows, DOS, Internet Active Pages



Example:

	local retval
	retval = ctod( date() )		// Returns the current julian date

	println( retval )

  

(c) 2000-2001 by West Coast Web Adventures, Inc., All Rights Reserved