导读 在开发Web应用时,我们常会遇到使用`Repeater`控件展示数据列表的需求。假设你的`List`作为数据源,如何在点击事件中提取`RepeaterItem`里...
在开发Web应用时,我们常会遇到使用`Repeater`控件展示数据列表的需求。假设你的`List
首先,确保你的`Repeater`控件已正确绑定数据源,例如`List
例如:
```csharp
protected void Repeater1_ItemCommand(object source, RepeaterCommandEventArgs e)
{
// 获取当前点击的RepeaterItem
RepeaterItem item = (RepeaterItem)e.Item;
// 找到控件并读取值
Label lblName = (Label)item.FindControl("lblName");
string name = lblName.Text;
Response.Write($"您选择了:{name}");
}
```
通过这种方式,你可以轻松地从`RepeaterItem`中提取`T`类的属性值。掌握这一技巧后,无论是展示还是操作数据都将更加得心应手!💪
开发小技巧 CSharp Repeater控件