Hello ,
In my application
public class CustomRoleProvider : SqlRoleProvider
{
public override string[] GetRolesForUser(string username)
{
}
}
is called on every page post back ,which fire query in db and bring 270 roles.
That can be optimized?
is it possible it called once at the time of login only.
Thank You.
...
Go to the complete details ...