本文介绍了asp.net中的listview行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在列表视图中访问链接按钮的标题(文本).

检查一下.
我在linkbutton的onclick事件上使用此功能.

How to access the caption (text) of linkbuttons in listview.

check this.
I am using this function on the onclick event of the linkbutton.

protected void linkfolder_click(object sender, EventArgs e)
{
   linkbutton l = (linkbutton)sender;
   string folder = l.text;
}


但这不起作用.

请提出一些建议.

我可以使用Listview1.findcontrol()方法吗?

请告诉我怎么做.


But it is not working.

Please suggest something.

Can i use Listview1.findcontrol() method.

Please tell me how.

推荐答案


这篇关于asp.net中的listview行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-03 00:33