Hi, how can I change the HTML code via VB .Net code?
For example,
on .aspx file I have:
<div class="Menu_On"><asp:LinkButton ID="Link_Menu1" runat="server">Menu 1</asp:LinkButton></div>
<div class="Menu_Off"><asp:LinkButton ID="Link_Menu2" runat="server">Menu 2</asp:LinkButton></div>
<div class="Menu_Off"><asp:LinkButton ID="Link_Menu3" runat="server">Menu 3</asp:LinkButton></div>
Then, when I click the "Menu 2" link, the class which coping the link should change become "Menu_On", and the other class become "Menu_Off".
How can I do that?
Thank you so much.