Antwerp
Posts: 24
|
| Posted: 03/07/2005, 7:11 AM |
|
How do I redirect users to different pages based on their groupID?
|
 |
 |
sbwtxj
Posts: 27
|
| Posted: 03/10/2005, 5:31 AM |
|
Pls descript particularlly your question .
Because the CCS has this function.
_________________
----------------
Regards,
shanbw |
 |
 |
mrachow
Posts: 509
|
| Posted: 03/11/2005, 12:07 AM |
|
Try
// Redirect to YourPage for GroupId 1
if(Utils.getUserGroup(e.getPage()).equals("1")) {
e.getPage().setRedirectString("<YourPage>");
}
_________________
Best regards,
Michael |
 |
 |
|