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>
 
Yep!

but you'll be writting javascript as that sort of thing is a client end
operation
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top