MVC 3 の [戻る] ボタンの解決策を解決するために、多くのフォーラムを調べました。[戻る] ボタンをクリックすると、前のページは表示されませんが、更新すると表示されます。私は試してみました:
response.setHeader( "Expires", "0" );
// set standard HTTP/1.1 no-cache headers (post-check and pre-check for IE)
response.setHeader( "Cache-Control", "no-store, no-cache, must-revalidate, post-check=0, pre-check=0, max-age=0, proxy-revalidate, no-transform, private");
// set standard HTTP/1.0 no-cache header
response.setHeader( "Pragma", "no-cache" );
しかし、まだ手がかりはありません。ブラウザに更新を要求する方法、またはサーバーからデータを取得する方法を教えてください。