0

リンクをクリックすると新しいウィンドウを開く Web アプリがあります。ただし、それを行うとすぐに、ブラウザのキャッシュがクリアされます。リンクをクリックしなければ、キャッシュはまだそこにあります。

target="_blank"標準とアプローチの両方を試しましたが、window.openどちらもキャッシュがクリアされます。

これは、同じ問題に遭遇した他の誰かへの参照ですが、解決策はありません。

http://www.pcreview.co.uk/forums/problem-new-window-clears-cache-t693284.html

理由について何か考えはありますか?

IE 7 および 8

4

1 に答える 1

0

これは私のために働いています、試してみて、私に知らせてください:

HTMLページ1(親):

<%@ Page Language="VB" AutoEventWireup="false" CodeFile="wpop1.aspx.vb" Inherits="pruebas_wpop1" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <META HTTP-EQUIV="CACHE-CONTROL" CONTENT="PRIVATE" />
    <title>Parent</title>  
</head>
<body>
    <form id="form1" runat="server">
    <div>
    <asp:TextBox runat="server"></asp:TextBox>
    <a href="wpop3.aspx" target="_blank" >Popup</a><br/>
    <asp:Button runat="server" Text="Button" />
    </div>
    </form>
</body>
</html>

コードビハインドページ1:

Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load       

        Response.ExpiresAbsolute = DateTime.Now.AddDays(2D)
        Response.Expires = 7200
        Response.CacheControl = "PRIVATE"

End Sub

HTMLページ2(ポップアップ):

<%@ Page Language="VB" AutoEventWireup="false" CodeFile="wpop3.aspx.vb" Inherits="pruebas_wpop3" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">       
    <title>PopUp</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    This is the Popup Window.
    </div>
    </form>
</body>
</html>
于 2012-04-26T00:49:29.157 に答える