Frage

I created an ImageButton in code buhind-

var img = new ImageButton();
img.ID = "Del" + i.ToString();
img.ImageUrl = "images/1395958363_meanicons_57.png";
img.Width = 48;
img.Height = 38;
img.OnClientClick = "javascript:void(DeleteBook())";

Label1.Controls.Add(img);

Now I need to get the ID of the ImageButton. Can anyone help me with this?

P.S The ImageButton was creates in "for", so I don't know how mutch ImageButton I have and what is them ID

War es hilfreich?

Andere Tipps

you can pass the img.ID into the javascript DeleteBook() function directly.

or better yet you can pass this directly eg: OnClientClick ="DeleteBook(this)"

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit StackOverflow
scroll top