I am using C#.NET 2.0. I have already called functions that are stored in external JavaScript file.However, the ,method currently used by me is like this 1) add the external JavaScript file reference e.g.
2) call a local function on click event onclick="someFunction();" This function(someFuction) is present within the design page
3) Then call the function in the external JavaScript file(say ABC()) from within this function.
This works, but there is the overhead of writing the someFunction each time.
Is there a way to call the function ABC() directly form button click ?
Thanks in Advance