I'm trying to grab a div's ID in the code behind (C#) and set some css on it. Can I grab it from the DOM or do I have to use some kind of control?
<div id="formSpinner">
<img src="images/spinner.gif">
<p>Saving...</p>
</div>
|
|
|||||||
|
|
|
Add the "runat" attribute to it so you have:
That way you can access the class attribute by using:
It's also worth mentioning that the asp:Panel control is virtually synonymous (at least as far as rendered markup is concerned) with div, so you could also do:
Which then enables you to write:
This gives you more defined access to the property and there are others that may, or may not, be of use to you. |
||
|
|
|
|
If all you want to do is conditionally show or hide a <div>, then you could declare it as an <asp:panel > (renders to html as a div tag) and set it's .Visible property. |
||
|
|
|
|
This question makes me nervous. It indicates that maybe you don't understand how using server-side code will impact you're page's DOM state. Whenever you run server-side code the entire page is rebuilt from scratch. This has several implications:
If you can get away with it, you might want to push this down to javascript and avoid the postback. Perhaps use an XmlHttpRequest() call to trigger any server-side action you need. |
|||
|
|
|
|
Add runat to the element in the markup
Then you can get to the control's class attributes by using formSpinner.Attributes("class") It will only be a string, but you should be able to edit it. |
||
|
|
|
|
Make sure that your div is set to runat="server", then simply reference it in the code-behind and set the "class" attribute.
Code-behind
|
||
|
|
|
|
Add the runat="server" attribute to the tag, then you can reference it from the codebehind. |
||
|
|