vb.net webform controls - where are the LEFT and TOP properties?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is this a silly request? Surely everyone out there doesn't design controls on a form in the place they will be displayed at runtime. On a Windows form, you will use LEFT and TOP to reposition everything. How is this done on a webform if these properties don't exist?
 
In the Style property.

label1.style("Top") = 50

Steve


pdt103 said:
Is this a silly request? Surely everyone out there doesn't design
controls on a form in the place they will be displayed at runtime. On a
Windows form, you will use LEFT and TOP to reposition everything. How is
this done on a webform if these properties don't exist?
 
Windows Forms are a proprietary product of Microsoft Inc. HTML and the WWW
are not. I would suggest learning something about HTML, as that is how your
controls (which are all HTML) are positioned.

--
HTH,
Kevin Spencer
..Net Developer
Microsoft MVP
Big things are made up
of lots of little things.

pdt103 said:
Is this a silly request? Surely everyone out there doesn't design
controls on a form in the place they will be displayed at runtime. On a
Windows form, you will use LEFT and TOP to reposition everything. How is
this done on a webform if these properties don't exist?
 
Back
Top