the intagration code is correct and the isadmin session is checked apon login to the site so there is no way that the non admin users should have the access. Do I need to change any of the code below?
public bool IsAdministrator(string useruniquename)
{
if(Session["IsAdmin"]!=null)
return true;
return false;
Paul
Post Hope