Can panes similar to outlook be used???

  • Thread starter Thread starter Phani
  • Start date Start date
P

Phani

hi everyone !!!!

i want to develop a web application in which the gui is divided into
different panes
and the panes should have facilities like increasing the width by dragging ,
dockable etc .... as we do in outlook panes .....

is it possible to have this kind of gui in ASP.NET using C# ......

cheers
Phani
 
thank u josh for ur reply and can u send me any details or code regarding
this matter ....

thanks once again
Phani
 
You can do it with frames, for example:

<FRAMESET ROWS="20%,20%" FRAMEBORDER="1" FRAMESPACING="1">
<FRAME src="images/auditvisits.gif" NAME="title" MARGINWIDTH="3"
MARGINHEIGHT="3" SCROLLING="NO">
<FRAME src="images/NewInstallationVisits.gif" NAME="body" MARGINWIDTH="3"
MARGINHEIGHT="3"
SCROLLING="AUTO">
</FRAMESET>
 
Back
Top