i have a table in which i have stored around 18 Id's of Div.and by default visibility is false of all div.i want when i get data of that table in which div id is saved.so how can i visible only that div which id are stored in table.suppose i have 18 div on my page.but i have stored just 7 id's in table.so how to make visible that id's on page load.Please anyone refer a simple way to solve this problem.
Add an runat="server" to your div, like
<div id="divID1" runat="server"></div>
Then on your Code Behind
divID1.Visible = true;
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.