Hi I have 3 radiobuttons 1.open 2.department 3.restricted to selected users and I have a list box below the radiobuttons where I have the users list now what my aim is when I select restricted to selected users and I click user names in the list the users cannot access the data my problem is can anyone suggest how to connect this radio buttons to users list. By the way I am using vb.net Below is the code in aspx
<tr>
<td style="width:120px;text-align:top" class="blue">SecurityLevel:*</td>
<td class="auto-style9">
<asp:Label ID="lblSecurityLevel" runat="server" ></asp:Label>
<asp:radiobuttonlist id="rbSecurityLevel" runat="server">
<asp:listitem id="option1" runat="server" value="Open" />
<asp:listitem id="option2" runat="server" value="Confidential to Department" />
<asp:listitem id="option3" runat="server" value="Restricted to Selected Users" />
</asp:radiobuttonlist > </td>
</tr>
I want to get answer as soon as possible its very urgent.