I want to auto submit my form and show the update progress area once it is submitted. I have tired adding 2 fucntions to the page:
window.onload=function(){
__doPostBack('UpdatePanelId','');
}
and....
window.onload=function(){
var btn = document.getElementById('buttonID');
btn.click();
}
The page gets posted back to, but the progress area is not showing up. Any thoughts how I can handle this?