Inconsistent format on web form

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

Guest

Although new to .net, I am in the process of developing a web application in
vs.net 2003.

When run on the 'development' machine the various controls have a XP look
about them (ie flat buttons, text boxes, etc).

When the application is transferred to another machine (same operating
system) the controls have a more traditional 3d look about them. The size and
position of some of the controls is different.

Can anyone assist me in ensuring that the forms and their control maintain
the same format on the 'production' server?
 
When developing a web application, you cannot guarantee how a page will
render. It is out of your hands. Unless you have strict control over
every desktop that will run the application (in which case, you might
consider WinForms), you will never know how different browsers on
different operating systems will choose to render your HTML.

In this case, it sounds like the XP systems are using different XP
themes. As I said - completely out of your hands, unless you control
the desktop.
 
Back
Top