我正在尝试将帖子数据从一个页面传递到下一个页面但是PreviousPage总是等于null。
这就是我在原始页面中的内容(在更新面板内) )
<asp:Button ID="mmGo" runat="server" Text="Merge" PostBackUrl="~/Default2.aspx?action=merge"/>
然后在接下来的页面中我有:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default2.aspx.cs" Inherits="Default2" %>
<%@ PreviousPageType VirtualPath="~/Default.aspx" %>
<!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></title>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:Label ID="Label1" runat="server" Text="Label"></asp:Label>
</div>
</form>
</body>
</html>
...并在.cs文件中:
protected void Page_Load(object sender, EventArgs e)
{
if (PreviousPage != null)
{
string action = Request.QueryString["action"];
if (action == "merge")
{
UpdatePanel SourceControl = (UpdatePanel)PreviousPage.FindControl("UpdatePanel1");
HiddenField SourceTextBox = (HiddenField)SourceControl.FindControl("txtListIDs");
if (SourceTextBox != null)
{
Label1.Text = SourceTextBox.Value;
}
}
}
else
{
Label1.Text = "page is not cross page post back!";
}
}
为什么PreviousPage总是等于null?
答案 0 :(得分:5)
PreviousPage
property使用Server.Transfer
返回将控件发送到此页面的页面。
如果当前页面是由于直接请求而呈现的(不是来自其他页面的传输或交叉发布),则PreviousPage属性包含null。
答案 1 :(得分:2)
是的...它正在工作......当你使用按钮或链接按钮时,使用postbackurl,不要使用response.redirect。当你使用postbackurl属性时,你可以控制,控制上一页...供参考观看此视频,
http://www.youtube.com/watch?v=P1AqBtOYOMI
postbackurl和Response.Redirect之间的区别?
PostBackURL将所有表单数据发送到指定的页面。而使用Response.Redirect时,您将表单数据发送到当前页面,然后将用户移动到指定的页面