I have an ASP.NET site that I am trying to access div elements by their ID from the C# code behind file. Essentially I want to see if a div element exists, and if so, alter its
You need to add a runat=server attribute to any control that you want to access in code behind. See this article for more help.
Accessing