Why isn't this working?

<ajaxToolkit:TabPanel Enabled='<%# User.IsInRole("admin") %>'...

While this works:

<asp:TextBox Enabled='<%# User.IsInRole("admin") %>'...
link|improve this question

40% accept rate
Why not? What happens? – SLaks Apr 20 '10 at 12:25
Nothing happens, the TabPanel remains enabled no matter what... Only when typed Enabled="false", it grays out. The TextBox works as expected and enabled/disables depending on users role. – henrico Apr 20 '10 at 12:30
feedback

1 Answer

up vote 0 down vote accepted

Is the first example within a binding context (bound control)? Perhaps you want to use the output directive instead of the binding directive?

<ajaxToolkit:TabPanel Enabled='<%= User.IsInRole("admin") %>'

EDIT: My bad. <%= %> translates into Response.Write, which is not what you want -- too used to ASP.NET MVC, I guess. The best thing is to make it runat="server", give it an ID and set the value in your code-behind.

<ajaxToolkit:TabPanel runat="server" ID="myTabs" ... />


protected void Page_Load( object sender, EventArgs e )
{
    myTabs.Enabled = User.IsInRole("admin");
    ...
}
link|improve this answer
Hmm... That seems correct, missed that. However, now it raises the following, Parser Error Message: Cannot create an object of type 'System.Boolean' from its string representation '<%= User.IsInRole("admin") %>' for the 'Enabled' property. – henrico Apr 20 '10 at 12:40
Yeah, <%= %> only works on client-side code. MS assumes that if you are using a server-side control you will be data binding or setting properties in code-behind. – BJ Safdie Apr 20 '10 at 12:49
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.