tags:

views:

128

answers:

2

how to create GUID in asp.net 3.5?

+3  A: 

System.Guid.NewGuid()

marcc
+9  A: 
System.Guid.NewGuid()

The complete doc is here: http://msdn.microsoft.com/en-us/library/system.guid.aspx

Ryan Cook