|
OK, I am doing an e-mail address verification script for an ASP app that I'm writing and I'm trying to use a GUID generator but I'm having strange problems. Here is the code:
<----Begin Code---->
Function GetGuid()
Set TypeLib = Server.CreateObject("Scriptlet.TypeLib")
GetGuid = TypeLib.Guid
Set TypeLib = Nothing
End Function
guid = getguid()
response.write(guid & "test")
<----End Code---->
The above is ofcourse example code but the output of that (at least on my server is:
<---- Being Output ---->
{5863AF9A-5E49-4740-9325-E7FF10681807}
<---- End Output---->
It is as if it is ignoring everything after the last curly brace. This one is driving me crazy. Any help would be awesome.
Thanks in advance guys.
|