P
Pål Andreassen
We are using themes (skin files and css files in the App_Theme) folder of a
large web application.
We are now implementing print functions on our pages. Earlier we've done
this by having separate stylesheets for screen and print using the media
attribute to specify usage.
e.g.:
<link rel="stylesheet" type="text/css" media="screen" href="screen.css"/>
<link rel="stylesheet" type="text/css" media="print" href="print.css"/>
But i ASP.NET 2.0 using themes any stylesheet that resides in a theme
folder is "automagically" referenced from any webpage without specifying
the media attribute.
Is there any way to specify media without having to move the stylesheet
files out of the theme folder and manually linking to it?
large web application.
We are now implementing print functions on our pages. Earlier we've done
this by having separate stylesheets for screen and print using the media
attribute to specify usage.
e.g.:
<link rel="stylesheet" type="text/css" media="screen" href="screen.css"/>
<link rel="stylesheet" type="text/css" media="print" href="print.css"/>
But i ASP.NET 2.0 using themes any stylesheet that resides in a theme
folder is "automagically" referenced from any webpage without specifying
the media attribute.
Is there any way to specify media without having to move the stylesheet
files out of the theme folder and manually linking to it?