is it a bug? ASP.NET

  • Thread starter Thread starter hansen
  • Start date Start date
H

hansen

hi all,
i've designed a web form using ASP.net, everything works fine but 10% of the
end users see the fon't very large on their screen. All pcs are the same
with windows XP and the same IE 6. is it local to the user PC or is it
something with .NET?

thanks,
 
Hi Hansen,

If it is not in a control, than mostly a setting of the browser on and on
the other hand text which have no font definition

How did you design your form?

Cor
 
thanks Cor for your reply,
you were right its a browser setting....

there is an option on your browser (View -->Text Size), users have their own
settings regarding this, so what i found out with ASP.NET that if you create
a lable and set the font size for example to (Arial, 10px) and go to your
browser and chage the TextSize to the largest then the whole document will
look like a big mess, and that what was happening with me.

Solution:
I had to create a style sheet and force all of my controls to use it. only
then, playing with the browser setting won't affect the look of your form

regards,
 
Back
Top