Mega Code Archive

 
Categories / ASP.Net Tutorial / Authentication Authorization
 

Adding roles to the application

<%@ Page Language="C#" %> <script runat="server">    protected void Page_Load(object sender, EventArgs e)    {       ListBoxDataBind();    }    protected void Button1_Click(object sender, EventArgs e)    {       Roles.CreateRole(TextBox1.Text.ToString());       ListBoxDataBind();    }    protected void ListBoxDataBind()    {       ListBox1.DataSource = Roles.GetAllRoles();       ListBox1.DataBind();    } </script> <html xmlns="http://www.w3.org/1999/xhtml" > <head id="Head1" runat="server">     <title>Role Manager</title> </head> <body>     <form id="form1" runat="server">         <h1>Role Manager</h1>         Add Role:<br />         <asp:TextBox ID="TextBox1" Runat="server"></asp:TextBox>         <asp:Button ID="Button1" Runat="server" Text="Add Role to Application"              OnClick="Button1_Click" />         Roles Defined:<br />         <asp:ListBox ID="ListBox1" Runat="server">         </asp:ListBox>     </form> </body> </html>