Can anyone point me in the direction of a good article or somewhere I can learn more about inline code?
I am trying to set a links text and visibility without using the code behind file like this -
<asp:HyperLin k ID="OrdersMaint enanceLink"
runat="server"
Text='<%# TranslateTag("v beiTest") %>'
NavigateUrl="~/SE/Orders/ManageCustomerS ervices.aspx"
Visible='<%# CurrentOperator .IsClient = "True" %>'
CssClass="Stand aloneLinks" />
But this doesn't work and I don't know why?
I am trying to set a links text and visibility without using the code behind file like this -
<asp:HyperLin k ID="OrdersMaint enanceLink"
runat="server"
Text='<%# TranslateTag("v beiTest") %>'
NavigateUrl="~/SE/Orders/ManageCustomerS ervices.aspx"
Visible='<%# CurrentOperator .IsClient = "True" %>'
CssClass="Stand aloneLinks" />
But this doesn't work and I don't know why?
Comment