Let's say I have 3 link buttons on a webpage,
<asp:LinkButton ID="LB1" runat="server" CssClass="regular" OnClick="LB1_Click">
Today
</asp:LinkButton>
<asp:LinkButton ID="LB2" runat="server" CssClass="regular" OnClick="LB2_Click">
Today
</asp:LinkButton>
<asp:LinkButton ID="LB3" runat="server" CssClass="regular" OnClick="LB3_Click">
Today
</asp:LinkButton>
I am looking to implement a functionality where when a link button is clicked, it gets highlighted with CSS and then the highlighting is removed when another link button is clicked. In other words, I want to display the active link button. Any suggestions?