Panel Positions
-
Frnds, I have got 5 panels with diff, data on it. For 5 type of user the panels are created but for admin login all 5 panels must be visible at a time. So the position of panel have to be diff. BUT when user five login and see his content than that panel appeares at the bottom (i make all the above 4 panel visible=false). What i want the positon of panel to be set from my c# code that is .cs file. Is there any x,y co-ordinates of panel???
-
Frnds, I have got 5 panels with diff, data on it. For 5 type of user the panels are created but for admin login all 5 panels must be visible at a time. So the position of panel have to be diff. BUT when user five login and see his content than that panel appeares at the bottom (i make all the above 4 panel visible=false). What i want the positon of panel to be set from my c# code that is .cs file. Is there any x,y co-ordinates of panel???
Rather than Panel, Use
Div
. And hide and Unhide them accordingly. This will resolve your problem :)Abhijit Jana | Codeproject MVP Web Site : abhijitjana.net Don't forget to click "Good Answer" on the post(s) that helped you.
-
Frnds, I have got 5 panels with diff, data on it. For 5 type of user the panels are created but for admin login all 5 panels must be visible at a time. So the position of panel have to be diff. BUT when user five login and see his content than that panel appeares at the bottom (i make all the above 4 panel visible=false). What i want the positon of panel to be set from my c# code that is .cs file. Is there any x,y co-ordinates of panel???
asp:panel renders to a div. Use style property to assign position arguments like :
This is a panel
to do your job.
Abhishek Sur My Latest Articles Working with Excel using MDAC
Basics on LINQ and Lambda Expressions
Create .NET Templates -
asp:panel renders to a div. Use style property to assign position arguments like :
This is a panel
to do your job.
Abhishek Sur My Latest Articles Working with Excel using MDAC
Basics on LINQ and Lambda Expressions
Create .NET TemplatesThanks 4 the help, but a new problem is occured... when logging as single user things are working fine..., means the position is perfect and as required. But when im logging as ADMIN than all panels get mixed up... why???
-
Thanks 4 the help, but a new problem is occured... when logging as single user things are working fine..., means the position is perfect and as required. But when im logging as ADMIN than all panels get mixed up... why???
Check the Client HTML it renders when you login using Admin. this might help you on what is wrong with Admin.
Abhishek Sur My Latest Articles Working with Excel using MDAC
Basics on LINQ and Lambda Expressions
Create .NET Templates