can hardly recognice my aspx pages in netscape 7.1

  • Thread starter Thread starter Anton Stadler
  • Start date Start date
A

Anton Stadler

Hello folks,

I have created a couple of pages and started to test them in netscape, and
was shocked. Earlier I only tested with several different ie versions, but
netscape is shocking. The sizes of textboxes changed a lot, and the tables
that are positioning these textboxes and descriptions seem to be moved a lot
as well.

Are there hints and tricks concerning netscape?!?
I have loads of textboxes in my pages and specified the size mostly in px,
is this OK(flowlayout)?
Is flow layout or gridlayout preferable?

All ideas welcome

Thank you

Anton
 
Try adding something like this to your page_load method:

if ("netscape|gecko|opera".IndexOf(this.Request.Browser.Browser.ToLower())
this.ClientTarget = "Uplevel";

Luc K
 
Back
Top