Link to home
Start Free TrialLog in
Avatar of cehrnow
cehrnow

asked on

Aligning Panel In Screen Centre ASP.NET

How do you align an ASP.NET panel in the centre of the screen taking into account the screen resolution ? Have tried the javascript method of obtaining screen size which doesn't work. Is it possible to put an ASP panel in an HTML table which resizes automatically using % settings for width/height ?
Avatar of mayankagarwal
mayankagarwal
Flag of India image

<div align="center">
<asp:panel id="panel1">
</asp:panel>
</div>
yes it is possible to auto size. But in that case you should not use the width/height property.
Avatar of cehrnow
cehrnow

ASKER

Can you elaborate ?
ASKER CERTIFIED SOLUTION
Avatar of mayankagarwal
mayankagarwal
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of cehrnow

ASKER

Thanks!