我在转发器控件中有一个隐藏字段,在转发器控件外面有一个按钮。下面是我的asp.code。
<asp:Repeater ID="rptAccordian" runat="server" OnItemDataBound="rptAccordian_ItemDataBound">
<ItemTemplate>
<div class="s_panel">
<h1>
<a href="#" data-content="Tool tip"><%# Eval("Name") %></a>
</h1>
<div>
<p>
<small><span style="font-family: 'Segoe UI'; font-weight: bold;">Category Objective: </span><span style="font-family: 'Segoe UI'"><%# Eval("Objective") %></span></small>
</p>
<p>
<small><span style="font-family: 'Segoe UI'; font-weight: bold;">Category Riskscore: </span>
<code><%# Eval("Score") %><span>%</span></code></small>
</p>
<p>
<code>
<img src="Content/img/add.png" /><asp:LinkButton ID="Add" runat="server">Add Question</asp:LinkButton>
</code>
</p>
<asp:HiddenField ID="hdnCategoryID" runat="server" Value='<%# Bind("CategoryID") %>' />
</div>
</ItemTemplate>
</asp:Repeater>
<div id="modalpopup">
<asp:Button ID="btnInsertQuestion" runat="server" Text="Save" OnClick="btnInsertQuestion_Click" />
</div>
我的后端代码如下。
protected void btnInsertQuestion_Click(object sender, EventArgs e)
{
HiddenField hf = (HiddenField)rptAccordian.FindControl("hdnCategoryID");
catID = Convert.ToInt16(hf.Value);
Response.Write("ID is") + catID;
}
有13个中继器,每个中继器将具有不同的CategoryID。我在每个转发器中都有一个名为Add的链接按钮,当我按下该按钮时,我将打开一个模态弹出窗口,它将有一个按钮。单击该按钮时,我需要显示属于该转发器控件的相应CategoryID,其中我单击了ADD链接按钮。
然而,隐藏字段hf显示为null并且我无法获得该手风琴的隐藏字段的值。
答案 0 :(得分:2)
您必须获取转发器项才能访问隐藏字段:
protected void btnInsertQuestion_Click(object sender, EventArgs e)
{
for (int i = 0; i < rptAccordian.Items.Count; i++)
{
var item = rptAccordian.Items[i];
var hf = item.FindControl("hdnCategoryID") as HiddenField;
var val = hf.Value;
}
}
<强>已更新强>
protected void Add_Click(object sender, EventArgs e)
{
var lb = sender as LinkButton;
var par = lb.Parent.FindControl("hdnCategoryID");
}
答案 1 :(得分:1)
我使用jQuery实现了我的回答。我使用jQuery找到了控件hdnCategoryID及其值,并将该值分配给新的隐藏字段并将该值检索到我的click事件。
答案 2 :(得分:0)
你可以在不使用hiddenfield的情况下获得。你需要像这样在转发器中声明Add
LinkButton。
<asp:LinkButton ID="Add" runat="server" CommandArgument = '<%# Bind("CategoryID")'%> OnClick = "Add_Click">Add Question</asp:LinkButton>
您已为btnInsertQuestion
按钮点击编写了代码,您在“添加”按钮单击时请求获取CategoryID
,因此我假设您的要求正确,但您输入了其他内容。
要在“添加”按钮中单击“获取CategoryId”,您需要这样写。
protected void Add_Click(object sender, EventArgs e)
{
//Get the reference of the clicked button.
LinkButton button = (sender as LinkButton );
//Get the command argument
string cat_id = button.CommandArgument;
// Type cast to int if application and use it.
}