在页面上的UserControl中获取Page的HiddenField值

时间:2015-08-28 17:55:57

标签: javascript c# asp.net hidden-field

我想阅读放置在该页面上的用户控件中的页面(.aspx)隐藏字段值并处理一些逻辑。

例如:我在页面上有一个隐藏的字段x。页面有许多用户控件,我想在那些用户控件中访问这个隐藏字段(x),其中x的值将由页面中的Javascript设置。

我正在尝试查找HiddenControl并从usercontrol(.ascx.cs)的codebehind读取其值,但始终为null。

HiddenField colname = UIUtils.FindControlRecursive(this.Parent.Page, "MainContent_AssignedTo_ColName") as HiddenField;

ID与客户端的隐藏字段相同。我尝试this.Parentthis.Parent.Parent作为第一个参数,但没有运气。

我在这里错过了什么。

3 个答案:

答案 0 :(得分:0)

尝试:

HiddenField colname = (HiddenField)Page.FindControl("The id of control");

答案 1 :(得分:0)

这是我的aspx页面:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="TestFindControl._Default" %>
<%@ Register Src="ReadHiddenField.ascx" TagName="Assign" TagPrefix="uc1" %>

<!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:HiddenField ID="HiddenField1" runat="server" Value="10">
    </asp:HiddenField>

<asp:placeholder ID="Placeholder1" runat="server"><uc1:Assign id="test" runat="server"></uc1:Assign> </asp:placeholder> 
    </div>
    </form>
</body>
</html>

这是我控制背后的代码:

protected void Page_Load(object sender, EventArgs e)
        {
            HiddenField test = (HiddenField)Page.FindControl("HiddenField1");
            var j = test.Value;

        }

答案 2 :(得分:0)

private void GetParentPageHiddenField()
    {
        System.Web.UI.WebControls.HiddenField ParenthiddenField = null;
        Control ctl = this.Parent;
        while (true)
        {
            ParenthiddenField = (System.Web.UI.WebControls.HiddenField)ctl.FindControl("ParentPageHiddenFieldID");
            if (ParenthiddenField == null)
            {
                if (ctl.Parent == null)
                {
                    return;
                }
                ctl = ctl.Parent;
                continue;
            }
            break;
        }
        var parentHiddenFieldValue=ParenthiddenField.Value;
    }