Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been working with C# for over a year now, and I was wondering what other functionality the tag attribute has of a control, till now each .net control I've used (buttons, labels, textboxes, gridview, etc.) have a tag attribute that you can define.

I only know you can put something in it like a string of text.

The visual studio description says:

User-defined data associated with the control

Does the tag do anything else than that? Describe it's content? And where do you use if for? Has it been of use to any of you?

share|improve this question

1 Answer

up vote 11 down vote accepted

No, it does nothing in itself. It's up to you to use it however you want to. For example, you could use it to do a sort of simplified databinding, such that you put the user-visible text in a checkbox, and the value to store in the database (e.g. an enum value) in the tag. Then you retrieve it from the tag later on.

IME it's usually useful for "quick and dirty" scenarios where there are better ways of working, but they take a bit longer to code up - which is fine for throwaway code, but not ideal for a complex production system. That may not always be the case, of course.

share|improve this answer
1  
Agree with quick and dirty. I think it's a legacy from Delphi (also designed by Anders Hejlsberg), and I use it myself (especially on TreeNodes or something), but it always feels like it's wrong :) – OregonGhost Nov 23 '09 at 11:53
So, in theory it works the same as a normal variable? – Pieter888 Nov 23 '09 at 11:54
1  
@Pieter888: Absolutely. It's just an extra property on the control which is ignored by all the framework code as far as I'm aware. – Jon Skeet Nov 23 '09 at 11:59
Thanks for the answer! – Pieter888 Nov 23 '09 at 12:00
Are we sure that's a Delphi legacy, and not a classic VB legacy? I don't remember when I first saw the Tag property on controls in classic VB, but the latest it could have been was VB5. (And I seem to remember, though I could be wrong, seeing them in VB4.) – John Rudy Nov 23 '09 at 14:13
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.