I have set up application mapping in iis to enable a stylesheet to read asp. All works great in IE but FF refuses to read the stylesheet.
In php I can put this at the top of the css to tell FF what to do with the file, is there an asp equivalent?
Thanks folks
In php I can put this at the top of the css to tell FF what to do with the file, is there an asp equivalent?
Code:
<?php header('Content-Type: text/css'); ?>
body {
…
}
…
Thanks folks