ColdFusion CreateUUID() - How to create an Universally Unique Identifier (UUID)

CreateUUID() - create an Universally Unique Identifier (UUID)

CreateUUID.cfm



<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>CreateUUID function example: how to create an Universally Unique Identifier (UUID)</title>
</head>

<body>
<h2 style="color:Crimson">CreateUUID Function Example</h2>

<cfset UUID=CreateUUID()>
<cfoutput><b>Universally Unique Identifier: #UUID#</b></cfoutput>
</body>
</html>







More ColdFusion examples