質問

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

役に立ちましたか?

他のヒント

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

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

ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top