Seats
在asp:gridview(all cells)
中将图片放置为ImageButton
。对于所选座位,当用户点击它时,为该座位设置ImageButton(cell)
。
我需要从gridview
获取点击的座位。我怎么能这样做?
答案 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.." />