我在行数据绑定的网格视图上设置图像..在同一行中,图像将显示在某些它不显示的位置。所以我根据业务逻辑从 CS 页面添加它。我只想将光标显示为手?如何更改图像图标的样式。
if (e.Row.Cells[16].Text == "0")
{
e.Row.Cells[16].Text = string.Empty;
}
else
{
ImageButton img1 = new ImageButton();
img1.ImageUrl = "images/ablue.GIF";
img1.Height = 14;
img1.Width = 20;
img1.ToolTip = "Image Available";
img1.Attributes.Add("OnClick", "javascript:return SetId('" + e.Row.Cells[2].Text.ToString() + "');");
e.Row.Cells[16].Controls.Add(img1);
}
这里的图像是howing,但不是在手游标。