create GUID’s using ASP

Created an ActiveX dll today to create GUID’s for FootJoy.com orders. Course, it was pretty easy since this article, entitled “Build a GUID generating component”, essentially does it for me.

Registering and unregistering components is a bear, the scripts on this site make it easier.

4 thoughts on “create GUID’s using ASP”

  1. easier:

    Function createGuid()
    Set TypeLib = Server.CreateObject(“Scriptlet.TypeLib”)
    tg = TypeLib.Guid
    createGuid = left(tg, len(tg)-2)
    Set TypeLib = Nothing
    End Function

    Scriptlet.TypeLib is installed with Windows Scripting

Leave a Reply

Your email address will not be published. Required fields are marked *