What's the different between ASP.NET AJAX pageLoad() and JavaScript window.onload?
- by Amr ElGarhy
I'm working with ASP.NET AJAX and want to understand the difference between these two snippets:
function pageLoad(sender, eventArgs) { }
and
window.onload = function() { }
Do they act the same?
Or is one called before the other?
Or will one be called automatically and the another not?