- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我试图将帖子数据从一页传递到下一页,但 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>
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
property使用 Server.Transfer
返回将控制发送到此页面的页面.
If the current page is being rendered as a result of a direct request (not a transfer or cross-post from another page), the PreviousPage property contains null.
关于asp.net - PreviousPage = 在跨页发布中为空,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4922513/
我试图将帖子数据从一页传递到下一页,但 PreviousPage 始终等于 null。 这是我在原始页面中的内容(在更新面板中 ) 然后在以下页面中我有:
我尝试使用 PreviousPage 技术在 2 个 Web 表单之间发布值。 我关注了关于 PreviousPage 的 MSDN 文章 ( http://msdn.microsoft.com/en
我有一个网站,其页面使用带有 PostBackUrl 的 ASP:Button 进行跨页回发,如下所示: 除了 PreviousPage.IsCrossPagePostBack 之外,我不需要有关上
我正在尝试为预订表格制作确认页面。而且我无法从我以前的页面控件中获取值。我的一切都在服务器上运行,我的提交按钮的 PostBackURL 指向确认页面。一切都会编译,但是当我输入信息并点击提交时,唯一
我正在通过以下方式尝试跨页面发布this MSDN article 。我有这个代码: CrossPagePosting1.aspx Page 1 CrossPagePo
我正在使用 MVC(预览版 5)构建我的 asp.net Web 应用程序,我还使用母版页概念。 我的PageA和PageB都是内容页。我正在做一个表单提交通过 JavaScript 从 PageA
在 ASP.net 2.0 中,网页的 PreviousPage 属性没有 ViewState 集合。我想使用这个集合在页面之间传输信息。 最佳答案 View 状态是页面独有的。 如果您想转移元素,
我有一个电话要在两个不同的网络应用程序之间实现跨页面发布。显然,我不能在标记文件 (ASPX) 中使用 PreviousPage 属性。你能阐明这一点吗? 非常感谢! 环境:ASP.NET 3.5 和
我遵循了教程:Getting Public Property Values from the Source Page在 MSDN 上,我开始了一个新的 Web 表单站点并创建了以下两个页面。他们工作得
这是我的代码:我在 Android MainActivity 中响应按键事件,并使用 BasicMessageChannel 发布按键消息: public class MainActivity ext
我是一名优秀的程序员,十分优秀!