Вопрос

i have nearly 100 image buttons in a page, which calls a common function

protected void img_clock(object sender,ImageClickEventArgs e)

(which is in c#)

how can i set a common image using ImageUrl property of ImageButton to the image button which called this function or which is clicked.

Это было полезно?

Решение

You can cast sender back to ImageButton and inspect it's ImageUrl value to retrieve image from the button that was clicked.

Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top