G
Gaspar
I'm binding an app setting to a Panel visibility. I use:
<add key="Panel1_Visible" value="true"/>
and then ....
<asp
anel ID="Panel3" runat="server" onload="Panel1_Load"
Visible="<%$ AppSettings
anel1_Visible %>">
</asp
anel>
Should I replace "true" with System.Boolean.TrueString?
Why this doesn't work: <add key="Panel1_Visible"
value="System.Boolean.TrueString"/>?
Thanks!
<add key="Panel1_Visible" value="true"/>
and then ....
<asp
Visible="<%$ AppSettings
</asp
Should I replace "true" with System.Boolean.TrueString?
Why this doesn't work: <add key="Panel1_Visible"
value="System.Boolean.TrueString"/>?
Thanks!