screwturn-4/WebApplication/AclActionsSelector.ascx
2009-09-30 13:47:13 +00:00

24 lines
1.1 KiB
Text

<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="AclActionsSelector.ascx.cs" Inherits="ScrewTurn.Wiki.AclActionsSelector" %>
<table>
<tr>
<td style="text-align: right;">
<b><asp:Literal ID="lblGrant" runat="server" Text="Grant" EnableViewState="False" meta:resourcekey="lblGrantResource1" /></b>
</td>
<td>
<b><asp:Literal ID="lblDeny" runat="server" Text="Deny" EnableViewState="False" meta:resourcekey="lblDenyResource1" /></b>
</td>
</tr>
<tr>
<td style="text-align: right;">
<anthem:CheckBoxList ID="lstActionsGrant" runat="server" AutoCallBack="True" AutoUpdateAfterCallBack="True"
TextAlign="Left" OnSelectedIndexChanged="lstActions_SelectedIndexChanged"
meta:resourcekey="lstActionsGrantResource1" UpdateAfterCallBack="True" />
</td>
<td>
<anthem:CheckBoxList ID="lstActionsDeny" runat="server" AutoCallBack="True" AutoUpdateAfterCallBack="True"
OnSelectedIndexChanged="lstActions_SelectedIndexChanged"
meta:resourcekey="lstActionsDenyResource1" UpdateAfterCallBack="True" />
</td>
</tr>
</table>