logic:present role=RoleName not working??

2001-08-21 Thread Matt Raible
I have the following scriptlet that returns the correct values: % if (request.isUserInRole(Administrators)) { out.println(Administrator); } else if (request.isUserInRole(Employees)) { out.println(Employee); } % And I was hopeing to use the logic:present tag to achieve the same

Re: logic:present role=RoleName not working??

2001-08-21 Thread Matt Raible
I figured it out - I was closing the present tag before printing out values. --- Matt Raible [EMAIL PROTECTED] wrote: I have the following scriptlet that returns the correct values: % if (request.isUserInRole(Administrators)) { out.println(Administrator); } else if