protected void dglistinner_ItemDataBound(object sender, DataGridItemEventArgs e)
{
try
{
if (e.Item.ItemType == ListItemType.AlternatingItem | e.Item.ItemType == ListItemType.Item)
{
ImageButton lnk = new ImageButton();
lnk = (ImageButton)e.Item.FindControl("img");
lnk.Attributes.Add("onclick", "return confirm('Are you sure you want to delete this Data?');");
}
}
catch (Exception ex)
{
}
}
No comments:
Post a Comment