div中有一个Label和Button相邻,点击Button怎么用C#获取相邻的那个Label
1个回答
展开全部
//先取得Button在Div中的index
int btnIndex=(sender as Button).Parent.Controls.IndexOf(sender as Button);
//再取得Label在Div中的index,+1还是-1就看你的Label在Button前还是后了
int lbIndex = btnIndex + 1;
//要获取的Label
Label lbResult = (sender as Button).Parent.Controls[lbIndex] as Label;
追问
用response.write输出标签文本时
提示错误说
未将对象引用设置到对象的实例
+1和-1都试过了
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询