ASPX That Returns An Image - Output Cache-able?

前端 未结 3 1327
再見小時候
再見小時候 2021-02-09 18:57

Greetings!

I\'ve created an APSX web form that returns a remote image based on some supplied parameters. It can be used like this:



        
3条回答
  •  迷失自我
    2021-02-09 19:27

    Try dropping the Response.End() as this will terminate the thread prematurely and prevent output caching from taking place.

    See: http://bytes.com/groups/net-asp/323363-cache-varybyparam-doesnt-work

    You may wish to consider using an ASHX handler and using your own caching method.

提交回复
热议问题