怎样给repeater中的label控件赋值,错在哪了?求指点。

repeater控件ID为arcitle.<asp:LabelID="lbNewsItem"runat="server"Text="label"></asp:Label>... repeater控件ID为arcitle.

<asp:Label ID="lbNewsItem" runat="server" Text="label"></asp:Label>

protected void article_ItemCommand(object source, RepeaterCommandEventArgs e)
{
Label name =(Label)article.FindControl("lbNewsItem");
name.Text="xueyuanxinwen";


这样写为什么还是显示“label”而不是xueyuanxinwen???
谢谢了~
展开
 我来答
CincyBella
2013-05-07 · 超过13用户采纳过TA的回答
知道答主
回答量:52
采纳率:0%
帮助的人:23.1万
展开全部
Add OnItemDataBound="OnItemDataBound"亮拆激 to repeater
then
protected void OnItemDataBound(object sender, RepeaterItemEventArgs e)
{
if (e.Item.ItemIndex != -1)
{
Label name = ((Label)e.Item.FindControl("敬袜御宴lbNewsItem"));
name .Text = "xueyuanxinwen"; //(you may change text by index)
}
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
空紫8P
2013-05-06 · TA获得超过980个赞
知道小有建树答主
回答量:851
采纳率:50%
帮助的人:545万
展开全部
你不能直接写 lbNewsItem.Text="xueyuanxinwen"; 吗?
更多追问追答
追问
repeater里的控件在vs里检测不到吧
追答
你后台有提示就可以
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式