R ruca Mar 24, 2004 #1 How can I hide borders of my frames and borders of tables for using with browser Opera and Netscape? In Internet Explorer works fine.
How can I hide borders of my frames and borders of tables for using with browser Opera and Netscape? In Internet Explorer works fine.
B bruce barker Mar 24, 2004 #2 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()) =0 ) Click to expand... this.ClientTarget = "Uplevel"; -- bruce (sqlwork.com)
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()) =0 ) Click to expand... this.ClientTarget = "Uplevel"; -- bruce (sqlwork.com)
H Herfried K. Wagner [MVP] Mar 24, 2004 #3 * "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. Click to expand... I would ask this question in a HTML/CSS group.
* "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. Click to expand... I would ask this question in a HTML/CSS group.