public int InsertUserRole(int userID, int roleID)
 {
     try
     {
         return(UserRoleManager.InsertUserRole(userID, roleID));
     }
     catch
     {
         return(0);
     }
 }