Ian,
I simply want to replace default ajax postback animation by my own. For example, that would be good to display some animated gif (placed in properly positioned gif) at the right bottom corner of the page every time asynchronous postback is initiated. That's easy to do by code like this:
<script type="text/javascript">
Sys.Webforms.PageRequestManager.getInstance().add_beginRequest(onBeginRequest);
Sys.Webforms.PageRequestManager.getInstance().add_endRequest(onEndRequest);
function onBeginRequest() {
$get("divAjaxProgress").style.visibility = "visible";
}
function onEndRequest() {
$get("divAjaxProgress").style.visibility = "hidden";
}
</script>
It will take me just to modify default DNN page to get this stuff used. That's why I want to find out if there is a way to get DNN not showing animated GIFs when postbacks are performed. At the moment I can say that I haven't found DNN to use any settings while generating UpdateProgress controls, unfortunately.