I am facing an issue with 3 usercontrols on a page. Each usercontrol has a pageLoad function in JavaScript, and the page itself also has a pageLoad function. However, only the pageLoad function of the last usercontrol that I registered is being fired, while the others are not.
<script type="text/javascript">
...
function pageLoad() {
alert('page load - uc1');
.....
}
...
Can someone please assist me on how to ensure all functions are fired?
Thank you