1

ASP.net IIS 7.0 でブラウザー キャッシュを活用する設定方法 HTTP ヘッダーと web.config ファイルの画像に有効期限または最大有効期間を設定する

4

1 に答える 1

2

For ASP.net, in the global.asax file, in the Application_PreRequestHandlerExecute function call Response.Cache.SetExpires and Response.Cache.SetMaxAge methods. For pictures or static content, in IIS 7 web.config use

<staticContent>
    <clientCache cacheControlMode="UseMaxAge" cacheControlMaxAge="7.00:00:00" />
</staticContent>

replacing 7 days with desired duration.

于 2013-01-24T15:29:13.073 に答える