Hide Borders

  • Thread starter Thread starter ruca
  • Start date Start date
R

ruca

How can I hide borders of my frames and borders of tables for using with
browser Opera and Netscape?
In Internet Explorer works fine.
 
use css styles. if you use inline styles asp.net strips them unless the
browser is IE. also you can trick asp.net into outputing the styles.

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


-- bruce (sqlwork.com)
 
* "ruca said:
How can I hide borders of my frames and borders of tables for using with
browser Opera and Netscape?
In Internet Explorer works fine.

I would ask this question in a HTML/CSS group.
 
Back
Top