So if one, just because one can, had a file such as this.

CSS.cfm
-------------------------
<cfset bgcolor = "green">

<cfoutput>
<cfcontent type="text/css">
body
{
    background color: #bgcolor#;
}
</cfcontent>
</cfoutput>

And another file such as this.

HTML.htm
-------------------------
<html>
    <head>
       <title>Testing</title>
       <link href="css.cfm" rel="stylesheet" type="text/css">
    </head>
    <body>
       <h1>Hello I'm testing cfml generated css</h1>
    </body>
</html>

What effect would this have on browsers caching the CSS file?

Ian


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Sams Teach Yourself Regular Expressions in 10 Minutes  by Ben Forta 
http://www.houseoffusion.com/banners/view.cfm?bannerid=40

Message: http://www.houseoffusion.com/lists.cfm/link=i:5:148082
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/5
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:5
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.5
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to