在ASP.Net中动态单击单元格时如何获取gridview单元格值

时间:2011-09-08 01:58:50

标签: asp.net gridview selection

我正在开发一个电影院座位预订网站。我使用Seatsasp:gridview(all cells)中将图片放置为ImageButton。对于所选座位,当用户点击它时,为该座位设置ImageButton(cell)

我需要从gridview获取点击的座位。我怎么能这样做?

1 个答案:

答案 0 :(得分:0)

您可以在网格视图的RowCommand事件中找到ImageButton。

代码部分:

string strType="";
ImageButton img = (ImageButton)e.CommandSource;
strType = img.Attributes["TypeID"].ToString();

设计师部分:

<asp:ImageButton ID="imgBtn" runat="server" ImageUrl="image"
 TypeID="..Give your value.." />