Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
3answers
4k 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 ...
7
votes
2answers
4k views

JavaScript Object Id

Do JavaScript objects/variables have some sort of unique identifier? Like Ruby has object_id. I don't mean the DOM id attribute, but rather some sort of memory address of some kind.
4
votes
3answers
278 views

When is Control.UniqueId created?

Does anybody know when a control's UniqueId is assigned? Right now I've got some code in my Page_Init that is based off the UniqueId. However, depending on some business logic, I might need to ...
2
votes
1answer
119 views

Creating unique id with jquery to use in bxslider

I guess this is pretty simple but I have no experience with jquery whatsoever. I'm using bxslider in every post I post in my wordpress theme and need the jquery to point to numerous unique id's, not ...
2
votes
4answers
224 views

Is there some uniqueID of each computer, to differentiate one from other?

I am developing a windows application in .NET Framework using C#.I want to know is there any Unique Id of each computer manufactured, let it be manufactured by any manufactrure but it must be unique. ...
2
votes
1answer
454 views

Generate Unique ID following a specific pattern like “digitStringDigit” in C#

I have earlier generated unique ids by making use of Math.Rando, method or sometimes by using GUID.NewGUID method. This time I am trying to generate a unique numbers which are based on a specific ...
2
votes
7answers
7k views

How can I generate a unique ID in Python?

I need to generate a unique ID based on a random value.
1
vote
0answers
48 views

Eventing in Liferay Portlets

In any portlet application, if the same page containing a portlet is opened in two browser tabs, how is the event in the first page distinguished from the second page? I want to assign a unique Id ...
1
vote
1answer
231 views

namingContainer ID with dynamic gridviewrow

This will not be a very clear explanation of my problem, but I don't know how to explain it better. I have a gridview which I create dynamically on PreInit. This gridview has textboxes dynamically ...
1
vote
1answer
98 views

check on uniqid for session

For user authentication, my client redirects to server and gets user data and I store it into php native session on client side. In this process Server redirects back on same requested url so if there ...
1
vote
2answers
258 views

calculate an unique id from an array/class

I use a data class to feed templates my data, i want to calculate a unique id from the data in the data class so i can check if the template with that data is allready in cache and then serve that ...
0
votes
3answers
49 views

Prevent spammers by using a hashed user id in web applications

I am building a web application that allows users to send messages to other users. On the send message page I currently have the user id of the receiver in the URL so the application knows where to ...
0
votes
1answer
18 views

Assigning Unique Ids to large set of documents

Essentially, we want to be able to uniquely assign IDs to all the N grams contained in a large set of documents. So, if I have 10 million documents to process, I would read the text from each one of ...
0
votes
1answer
64 views

Grails:Generating Custom ID

I have a domain object Issue that has a property Date createTime, that I want to be used as the id by GORM with some custom logic. For example suppose the first Issue is created on 2011/08/02, the ID ...
0
votes
1answer
735 views

Dynamic Gridview Template and Unique Control (ie textbox, label) IDs?

When creating a Gridview at design time you can create a template column like this: <asp:TemplateField> <ItemTemplate> <asp:Label runat="server" ...
0
votes
3answers
403 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, ...