Often I need to use a random string to query on a database or to reference a record. This code allows you to create a random string that is very very random. <% Dim random_id Set random_id = CreateObject(“Scriptlet.TypeLib”) random_id = mid(random_id.GUID,2,36) %> And to use it you can just do this: <%=random_id%> These are...