问一个简单的问题
(linkbutton)e.CommandSource.text= "详细信息 "
请问这句语句是什么意思。其中(linkbutton)e.代表什么??其中e是DataListCommandEventArgs 。
希望高手们能指点一下
------解决方案--------------------e.CommandSource表示触发事件的对象。
另外这个代码不对。
应该是
((linkbutton)e.CommandSource).Text = "详细信息 "
就是把commandsource转换成linkbutton类型,注意要确定这个
commandsource就是linkbutton
------解决方案--------------------http://www.phome.net/document/net/200504/net111246235613892.html
LZ看看这个就明白了
------解决方案--------------------加(linkbutton)是强制转换,不能漏。否则类型不匹配出错。