Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Reading over TRULY UNDERSTANDING VIEWSTATE the author suggests:

When ASP.NET parses the form, and finds a tag with runat=server, it creates an instance of the specified control. The variable name it assigns the instance to is based on the ID you assigned it (by the way, many don't realize that you don't have to give a control an ID at all, ASP.NET will use an automatically generated ID. Not specifying an ID has advantages, but that is a different subject).

What advantages could one gain by not specifying control IDs? My quick searching didn't turn anything up. Thanks for the help.

share|improve this question

1 Answer

up vote 1 down vote accepted

If you do not specify control ID then you can not get the control and change it on code behind, so its seems like a constant control on the page. I do not think that this is advanced or not, I see it just as an rare used option.

The only advanced that I can think is if you have many images that you do not wish to change, but you like the asp.net take care of the image path, then is a nice idea to not specify control id.

In literal asp controls the id is not appear anyway in the page. In other controls that post data, if you do not include ID then the control is rendered with only the name (not the id)

Also the controls that they do not have control id probably they are not registered on the table with the controls, and the search for controls maybe is faster in a smaller table.

share|improve this answer

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.