You can do this |
| santhosh kumar replied to Charvi Sanghavi at 03-Jul-08 01:04 |
Hi,
When you login as a normal user. The session value will be like this:-
Session["Normal User"] = "true"; Session["SuperUser"] = "false";
Similarly when you change it to a super user . You will channge the Session values:-
Session["Normal User"] = "false";
Session["SuperUser"] = "true";
This can be done.
Regards, Santhosh
|
|