Implementation of Generating GUID from ASP Script
During this time, I was working on the web conversation part of a communication tool, and GUID was needed to realize the unique number of users.
Implementation of ASP Generating GUDI
< %Dim objTypeLibSet objTypeLib = CreateObject("Scriptlet.TypeLib")Response.Write objTypeLib.Guid%>
--------------------
GUID Tips:
Globally Unique Identifier (GUID) is an alphanumeric identifier used to indicate the unique installation of a product. GUID is used in many popular software applications, such as Web browsers and media players.
The GUID is in the format "xx-xxxx-xxxx-xxxx-xxxx", where each x is a hexadecimal number in the range 0-9 or a-f. For example: 6F9619FF-8B86-D011-B42D-00C04FC964FF is a valid GUID value.
Why use GUID?
No two computers in the world generate duplicate GUID values. GUID is mainly used to assign unique identifiers in networks or systems with multiple nodes and multiple computers. On the Windows platform, GUIDs are widely used: registries, class and interface identifiers, databases, and even automatically generated machine names, directory names, etc.
Copyright Protection: ShuDudu from the original article, reproduced Please keep the link: https://www.shududu.com/life/Implementation-of-Generating-GUID-from-ASP-Script.htm