ASP.NET - layout

  • Thread starter Thread starter _nabuchodonozor
  • Start date Start date
N

_nabuchodonozor

Hi

I've a quastion. Is a possibility in VS 2005 in ASP to compose
components on form without writing HTML code??
 
There is a designer, if that is what you mean. Or did you mean
something else?
 
There is a designer, if that is what you mean. Or did you mean
something else?


I mean that you can put e.g. button wherever you want on form. I use
panels now and it is probably the best solution of course I still have
to use tables from HTML. I've just thouht that there is special
component(special panel or something) which allow to do similar things
as in WinForms. But I was probably wrong:P
 
HTML doesn't allow you to layout as flexibly as you can using coordinates on
a winform without using something like absolute positioning in CSS. All
controls in asp.net support CSS so it is possible, but it may not
necessarily show in the designer as its as its rendered as HTML output .

Regards

John Timney (MVP)
http://www.johntimney.com
http://www.johntimney.com/blog
 
Well, the nature of HTML is incredibly different from that of a windows
forms. There is a designer, yes, and you can place a button on the page,
but it will be positioned in an absolute way, and from what I know, when it
comes to HTML, that's not a good idea.

I would say that instead of looking for absolute positioning, you should
look at CSS to indicate the appropriate margins and padding for your page
and the elements on it.
 

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

Similar Threads

Conversion form previous VS 6
absolute positioning in vs 2008 1
Dropped Sessions? 24
3rd Party Tools 3
LINQ to XML using VS 2005 4
Web page absolute positioning 4
Page layout in VS 2005? 7
RadioButtonList 1

Back
Top