在 C# 中修改 asp:BulletedList
我有这样的不同按钮
<asp:Button ID="button1" runat="server" Text="single" title="single" EnableViewState="false" />
当单击此按钮时,我希望这样的列表中的文本发生变化
<asp:BulletedList ID="list1" runat="server" EnableViewState="false">
<asp:ListItem>Item1</asp:ListItem>
<asp:ListItem>Item2</asp:ListItem>
<asp:ListItem>Item3</asp:ListItem>
<asp:ListItem>Item4</asp:ListItem>
</asp:BulletedList>
在 C# 中如何选择列表的第一个、第二个或第三个元素?
protected button_Click(object sender, EventArgs e)
{
list1. ...;
}
谢谢。
I've different buttons like this
<asp:Button ID="button1" runat="server" Text="single" title="single" EnableViewState="false" />
When this button is clicked I want that the text in a list like this changes
<asp:BulletedList ID="list1" runat="server" EnableViewState="false">
<asp:ListItem>Item1</asp:ListItem>
<asp:ListItem>Item2</asp:ListItem>
<asp:ListItem>Item3</asp:ListItem>
<asp:ListItem>Item4</asp:ListItem>
</asp:BulletedList>
How in C# can I select the first, the second or the third element of the list?
protected button_Click(object sender, EventArgs e)
{
list1. ...;
}
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 ListControl.Items 属性 。
Use ListControl.Items Property.
例如,如果您想将 Item1 更改为 dir,请使用以下命令:
For example if you want to change you Item1 to dir, use this :