Posted on: 1/19/2014 12:07:21 PM | Views : 719

Dear Friends
Got this error evry time since i started provide roles, this is my web.config and myprovider class
<roleManager enabled="true" defaultProvider="shayProvider"> <providers> <add type="Carental.MyRoleProvider" name="shayProvider" /> </providers> </roleManager>
class
using BuisnessLogic; using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Security;
namespace CarRenting.Security { public class MyRoleProvider : RoleProvider { public override void AddUsersToRoles(string[] usernames, string[] roleNames) { throw new NotImplementedException(); }
public override string ApplicationName { get { throw new NotImplementedException(); } set { throw new NotImplementedException(); } ...

Go to the complete details ...