これは私のために働いています、試してみて、私に知らせてください:
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>