So what tag needs to be added to the page and how? PLease provide more details.
Main Topics
Browse All TopicsWhen running Google Page Speed:
http://code.google.com/spe
Firebug says:
The following resources are missing a cache expiration. Resources that do not specify an expiration may not be cached by browsers. Specify an expiration at least one month in the future for resources that should be cached, and an expiration in the past for resources that should not be cached:
* /main/css/css-home.css
* /main/images/sidebar.gif
How Do I resolve this issue? Where do I add cache expiration and how? Please be detailed.
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
This link might also be useful, however if you are not in control of the headers that are sent by your server, it might not be so useful, either.
http://developer.yahoo.com
Hi
You can set the expiry values in your Apache httpd.conf e.g.
<IfModule mod_expires.c>
#this stops screen flicker in IE
BrowserMatch "MSIE" brokenvary=1
BrowserMatch "Mozilla/4.[0-9]{2}" brokenvary=1
BrowserMatch "Opera" !brokenvary
SetEnvIf brokenvary 1 force-no-vary
<Directory "${AppBaseDir}/main/images
ExpiresActive On
ExpiresByType image/gif "access plus 30 days"
ExpiresByType image/jpeg "access plus 30 days"
ExpiresByType image/png "access plus 30 days"
</Directory>
...
</IfModule>
Business Accounts
Answer for Membership
by: Ray_PaseurPosted on 2009-08-02 at 14:18:52ID: 25000569
I think this is talking about the HTML meta tags.