当前位置: 代码迷 >> ASP.NET >> C#怎么调用Table中行的title属性
  详细解决方案

C#怎么调用Table中行的title属性

热度:7943   发布时间:2013-02-25 00:00:00.0
C#如何调用Table中行的title属性
如题,在HTML代码中可以设置TABLE的行或单元格的title属性, <tr   title= "xxx ">
但在C#代码中是无法访问的(TABLE的RUNAT属性已设为Server)
如:this.Table.Row[0].Title这是点不出这个属性的,请教高手如何才能在C#代码中访问此属性呢?

------解决方案--------------------------------------------------------
this.Table.Row[0].Attribuates.Add( "title ",...)
------解决方案--------------------------------------------------------
td.Attributes[ "title "] = "生铁 ";

------解决方案--------------------------------------------------------
this.Table.Row[0].Attributes[ "title "]能不能取到。
  相关解决方案