How to call a function on run time button click.
As I have created a table and a button on run time and want to call a function on its click on
code behind page(.cs page).
It is in Asp.net with c#
my code full details is like
2) my function is on same page like
now i want to call this function on click of button
As I have created a table and a button on run time and want to call a function on its click on
code behind page(.cs page).
It is in Asp.net with c#
my code full details is like
Code:
strhtml = strhtml.append(<button id=btnclick, runat='server',onclick=testfunction''></button>);
Code:
testfunct() { xyz; }
Comment