Hello again experts,
This is probably very simple but I am having some slight issues.
We have a checkbox:
<asp:CheckBox ID="cbTerms" runat="server" /> There there are two linkbuttons:
<asp:LinkButton ID="LinkBtn1" runat="server" Text="Review Papers" style="font-weight: 700; font-size: 12pt;background-color:#ffaa11;" OnClick="LinkBtn1_Click" /></div> <asp:LinkButton ID="LinkBtn2" runat="server" Text="Change Over" style="font-weight: 700; font-size: 12pt;background-color:#ffaa11;" OnClick="LinkBtn2_Click" /></div> Each gets redirected to a separate page.
Then on page load, I want to check if the cbTerms checkbox control has a value of Y or not.
If it does, then hide the Change Ov ...

Go to the complete details ...