I want to set the "name" attribute for HiddenField control of ASP.NET from code behind, but I cannot find the "Attributes" property. Is it not there for a purpose? How do I add the attribute?

thanks

link|improve this question

64% accept rate
feedback

2 Answers

up vote 1 down vote accepted

The name attribute is automatically computed from the ID properties of the hidden field and its ancestors in the naming container chain. You don't get to set it yourself. You can only access it through the UniqueID of the control.

link|improve this answer
feedback

A possible solution, without knowing a bit more about your code, is to use a server side Html control rather than an ASP.NET web control by adding the runat="server" attribute to the Html markup:

<input type="hidden" id="myHiddenField" runat="server" />

You can then specify the id dynamically in the code behind at runtime from which the name attribute is inferred from:

myHiddenField.ID = "CodebehindName";
myHiddenField.Value = "myValue";

This will result in the following output:

<input name="CodebehindName" type="hidden" id="CodebehindName" value="myValue" />
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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