Why doesn't User.IsInRole work in this context? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-23T10:43:38Z http://stackoverflow.com/feeds/question/245027 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/245027/why-doesnt-user-isinrole-work-in-this-context 1 Why doesn't User.IsInRole work in this context? Kolten 2008-10-28T21:56:21Z 2008-10-29T05:48:31Z <p>...I want to Show the 'delete' button when user is an admin, and show the 'add item' button when user is a contributor:</p> <pre><code>&lt;!-- More code above --&gt; &lt;asp:BoundField DataField="Description" HeaderText="Description" SortExpression="Description" /&gt; &lt;asp:TemplateField ShowHeader="False"&gt; &lt;ItemTemplate&gt; &lt;asp:LinkButton CSSClass="TableRightLink" ID="LinkButton1" runat="server" CausesValidation="False" CommandName="Delete" Visible=&lt;%# User.IsInRole(@"DOMAIN\CMDB_ADMIN") %&gt; Text="Delete" OnClientClick="return confirm('Are you certain you want to delete this item?');"&gt;&lt;/asp:LinkButton&gt; &lt;/ItemTemplate&gt; &lt;/asp:TemplateField&gt; &lt;/Columns&gt; &lt;SelectedRowStyle VerticalAlign="Top" /&gt; &lt;HeaderStyle ForeColor="White" CssClass="TableHeader" BackColor="SteelBlue" /&gt; &lt;/asp:GridView&gt; &lt;asp:table width="100%" runat="server" CSSclass="PromptTable" Visible=&lt;%# User.IsInRole(@"DOMAIN\CMDB_CONTRIBUTE") %&gt; &gt; &lt;asp:tablerow&gt;&lt;asp:tablecell HorizontalAlign=Center&gt; &lt;asp:HyperLink ID="HyperLink1" runat="server" NavigateUrl="AddConfigItem.aspx" ForeColor="LightCyan"&gt;Add Item&lt;/asp:HyperLink&gt; &lt;/asp:tablecell&gt;&lt;/asp:tablerow&gt;&lt;/asp:table&gt; </code></pre> <p>The Delete button 'visible' attribute works fine. But, the "add item' hyperlink doesn't. It always shows. View-source tells me that %# User.IsInRole(@"DOMAIN\CMDB_CONTRIBUTE") %> isn't evaluating to anything. Any idea why this is?</p> http://stackoverflow.com/questions/245027/why-doesnt-user-isinrole-work-in-this-context/245032#245032 1 Answer by Keltex for Why doesn't User.IsInRole work in this context? Keltex 2008-10-28T21:58:22Z 2008-10-28T22:06:13Z <p>Try:</p> <pre><code>Visible='&lt;%= User.IsInRole(@"DOMAIN\CMDB_CONTRIBUTE") %&gt;' </code></pre> <p>The asp:table doesn't appear to be databound.</p> http://stackoverflow.com/questions/245027/why-doesnt-user-isinrole-work-in-this-context/245268#245268 1 Answer by tvanfosson for Why doesn't User.IsInRole work in this context? tvanfosson 2008-10-28T23:33:29Z 2008-10-28T23:33:29Z <p>Try setting it in code behind, instead of in mark up, in Page_Load. Assuming the id is promptTable (it wasn't given in your example), just add:</p> <pre><code>promptTable.Visible = User.IsInRole(@"DOMAIN\CMDB_CONTRIBUTE"); </code></pre> <p>Presumably this needs to be done regardless of whether it is a postback or not.</p> <p>FWIW, @Keltex is right about the control not being databound so <code>&lt;%# %&gt;</code> won't work. Unfortunately, the <code>&lt;%= %&gt;</code> syntax won't either because it always returns a string and you need a boolean value there. I couldn't find any other syntax that would work in this case. You could probably do this by turing off display using javascript, but I suspect that you don't want the table to be rendered to the page if not in the correct group (as opposed to just being hidden or removed from the DOM once on the client). Doing it in the code behind, I think is the right way to go about it.</p>