Hi,
I have an asp button on my page, in the Page_Load on the code behind, I am binding some javascript calls as follows.
btnExample.OnClientClicking = "functionOne(1,2);"+"function2()";
The problem is I would like to be able to pass the EventArgs passed to the Page_Load as in function2() I wish to call...
eventArgs.set_cancel(true).
Would appreciate any help.