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
|
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
| |||
|
feedback
|
|
The | ||||
|
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:
You can then specify the id dynamically in the code behind at runtime from which the name attribute is inferred from:
This will result in the following output:
| |||
|
feedback
|