Dynamic Image button and Its click event ?
-
How i can add click event on dynamically created ImageButton
-
How i can add click event on dynamically created ImageButton
-
How i can add click event on dynamically created ImageButton
C#:
ImageButton button = new ImageButton(); button.Click += new ImageClickEventHandler(button_Click);
VB:
ImageButton button = new ImageButton AddHandler button.Click, AddressOf button_Click
Venkatesh Mookkan My: Website | Yahoo Group | Blog Spot
-
How i can add click event on dynamically created ImageButton
C#
button.Click += new EventHandler(Button_Click);
vbAddHandler buttonn.Click, AddressOf Button_Click
EVEN THE WORD IMPOSSIBLE SAYS I M POSSIBLE.
-
C#
button.Click += new EventHandler(Button_Click);
vbAddHandler buttonn.Click, AddressOf Button_Click
EVEN THE WORD IMPOSSIBLE SAYS I M POSSIBLE.
I want to zoom that image when i click the Image Button.. Where I write that code ?.
-
I want to zoom that image when i click the Image Button.. Where I write that code ?.
check this out http://www.codeproject.com/KB/web-image/ASPImaging1.aspx
We are not a Code Charity
-
I want to zoom that image when i click the Image Button.. Where I write that code ?.
Masood Kochi,SSF wrote:
click event
EVEN THE WORD IMPOSSIBLE SAYS I M POSSIBLE.