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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top