Tagged Questions

0
votes
3answers
106 views

What do you say of chopping type-4 UUID in this manner

Check this, List<String> list = new ArrayList<String>(); for (int i = 0; i < 10000; i++) { String value = (""+UUID.randomUUID().getLeastSignificantBits()).substring(3, …
5
votes
2answers
232 views

C# asp.net Why is there a difference between ClientID and UniqueID?

I know ClientID is used for javascript and UniqueId for server side and that ClientID uses an underscore (_) and UniqueId uses a dollar sign ($) in asp.net 2.0. But what I don't get is why use two …
-2
votes
7answers
314 views

How can I generate a unique ID in Python?

I need to generate a unique ID based on a random value.
0
votes
1answer
65 views

Getting a UniqueId when using RenderControl

I'm using RenderControl(writer) on a set of ASP.NET controls to get the generated server control markup back, for a template. These are form controls, such as radioboxes, input boxes, checkboxes. The …