I'm pretty new to ASP.Net and I'm not sure I'm going about this the right way. I have a Repeater which is bound to a list of "Image" objects. Within each RepeaterItem is a checkbox and I have a button OnClick event, which I want to display some attributes of the checked Image objects.
我是ASP.Net的新手,我不确定我是否会采用正确的方法。我有一个Repeater,它绑定到一个“图像”对象列表。在每个RepeaterItem内是一个复选框,我有一个按钮OnClick事件,我想显示已检查的Image对象的一些属性。
The label updates, but the metadata is blank. DataBinder.Eval(i.DataItem, "FileName") is coming back null, but I'm not sure why? I thought perhaps the postback from the checkbox was causing problems but I still get the same issue if I try to display the data before any postbacks have occurred, so perhaps I'm not fetching the attributes correctly. Or am I going about this in completely the wrong way? Any help appreciated.
标签更新,但元数据为空。 DataBinder.Eval(i.DataItem,“FileName”)返回null,但我不确定为什么?我想也许复选框的回发导致了问题,但如果我尝试在发生任何回发之前显示数据,我仍然会遇到同样的问题,所以也许我没有正确地获取属性。或者我是以完全错误的方式解决这个问题?任何帮助赞赏。
Code:
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
string importPath = Server.MapPath("~/Images/ForImport");
ImageProcessor processor = new ImageProcessor(importPath);
rptImageList.DataSource = processor.ImageList;
rptImageList.DataBind();
}
}
protected void btnImport_Click(object sender, EventArgs e)
{
foreach (RepeaterItem i in rptImageList.Items)
{
CheckBox chk = i.FindControl("chkSelectImage") as CheckBox;
if (chk.Checked)
{
Testlabel.Text += "Selected: " + DataBinder.Eval(i.DataItem, "FileName");
}
}
}
HTML:
<asp:Repeater ID="rptImageList" runat="server">
<ItemTemplate>
<div class="photoinstance">
<asp:Image runat="server" ImageUrl='<%#"Images/ForImport/" +DataBinder.Eval(Container.DataItem, "FileName") %>' />
<asp:CheckBox ID="chkSelectImage" AutoPostBack="true" runat="server"/>
<p><%#Eval("FileName")%> - <%#Eval("FileSize")%> bytes</p>
</div>
</ItemTemplate>
</asp:Repeater>
2 个解决方案
#1
8
i.DataItem is not available (is null) at btnImport_Click, is available only at the ItemDataBound event (if I recall correctly the event name).
You can use a HiddenField to store the FileName then you will have to call i.FindControl.
i.DataItem在btnImport_Click中不可用(为空),仅在ItemDataBound事件中可用(如果我没记错事件名称)。您可以使用HiddenField存储FileName,然后您必须调用i.FindControl。
#2
0
I think this question is asking how to get data from a repeater on postback and more specifically how to interact with a CheckBox that is within a repeater. So on the postback of another control an example of how to do this is;
我认为这个问题是询问如何在回发时从转发器获取数据,更具体地说,如何与转发器内的CheckBox进行交互。所以在另一个控件的回发上,一个如何做到这一点的例子是;
protected void CheckBox_CheckedChanged(object sender, EventArgs e)
{
foreach (RepeaterItem ri in Repeater.Items)
{
foreach (Control c in ri.Controls)
{
if (typeof(CheckBox) == c.GetType())
{
CheckBox checkBox = (CheckBox)c;
checkBox.Checked = true;
}
}
}
}
#1
8
i.DataItem is not available (is null) at btnImport_Click, is available only at the ItemDataBound event (if I recall correctly the event name).
You can use a HiddenField to store the FileName then you will have to call i.FindControl.
i.DataItem在btnImport_Click中不可用(为空),仅在ItemDataBound事件中可用(如果我没记错事件名称)。您可以使用HiddenField存储FileName,然后您必须调用i.FindControl。
#2
0
I think this question is asking how to get data from a repeater on postback and more specifically how to interact with a CheckBox that is within a repeater. So on the postback of another control an example of how to do this is;
我认为这个问题是询问如何在回发时从转发器获取数据,更具体地说,如何与转发器内的CheckBox进行交互。所以在另一个控件的回发上,一个如何做到这一点的例子是;
protected void CheckBox_CheckedChanged(object sender, EventArgs e)
{
foreach (RepeaterItem ri in Repeater.Items)
{
foreach (Control c in ri.Controls)
{
if (typeof(CheckBox) == c.GetType())
{
CheckBox checkBox = (CheckBox)c;
checkBox.Checked = true;
}
}
}
}