私は2つのフォームを持つasp.net 4アプリを持っています。私が持っている最初の形で
<asp:Button ID="Save" runat="server" Text="Save" onclick="Save_Click"PostBackUrl="~/WebForm2.aspx" />
. 私が持っている2番目のページで
protected void Page_Load(object sender, EventArgs e)
{
if (PreviousPage != null)
{
Label1.Text = "you came from site: " + PreviousPage.Title;
}
}
しかし、タイトルは空です。previousPage.buffer は、ErrorCode = -2147467259 で httpException "response is not available in this context" をスローします。コードの何が問題になっていますか?