vote up 0 vote down star

I have implemented caching Images in my website, It is working fine in IIS 6 but not working in IIS 7 problem is images not shown on my website on iis7 hosted server but shown on iss6 hosted server
I have implemented caching using this Article.... http://www.codeproject.com/KB/aspnet/CachingImagesInASPNET.aspx

Does anyone have any idea what's going wrong or anyone have good suggestion regarding Image caching.....Any hellp will realy appreciated...
Thanks

flag

71% accept rate
Is there a reason you aren't adding far future cache expiration headers to you images dir in IIS? This is the recommended why to add cache headers to you images. – BigBlondeViking Jul 2 at 14:07

1 Answer

vote up 0 vote down

You might need to register the handler... Is it in you web.config for IIS7?

try looking at this link?

<add path="*.ashx" verb="*" type="System.Web.UI.SimpleHandlerFactory" validate="True" />

http://stackoverflow.com/questions/702572/iis7-file-mappings-asax-ashx-asap

link|flag
add, but no success, any other findings? Thanks – Muhammad Akhtar Jul 2 at 13:21
just for arguments sake can you post a url that is having the problem? I want to see what you are using exactly. – BigBlondeViking Jul 2 at 14:08
this is URL nomanibooks.com – Muhammad Akhtar Jul 2 at 14:41
I have changed IIS pipeline mode integrated to classic, images are shown, Problem seems to be resolved, but when setting pipeline mode to integrated, issue still remain,,. setting classic identical to IIS 6.. any thought.... Thanks – Muhammad Akhtar Jul 2 at 14:43
blogs.msdn.com/tmarq/archive/… – Muhammad Akhtar Jul 2 at 14:44
show 1 more comment

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.