You have this kind of options. You can go for the
Creates a uniquely named, zero-byte temporary file on disk and returns the full path of that file.Code:Path.GetTempFileName()
to get a unique GUIDCode:System.Guid.NewGuid
Or You can use the current time(with seconds) with that RadioButton to create unique id
Code:System.DateTime.Now.ToString("ddMMyyyhhmmss")




Reply With Quote