I'm encountering an issue with link buttons on my master page. I want to dynamically add the CSS class "Active" after clicking each link button and postback URLs.
<asp:LinkButton ID="Linkbutton1" runat="server" PostBackUrl="/News.aspx?lang=1"
Text="News" OnClick="Linkbutton1_Click">
</asp:LinkButton>
Linkbutton 1
Linkbutton 2 - class "active"
Linkbutton 3
I attempted to add the class using the link button's onclick event, but it gets removed after the postback occurs.