I've been trying to assign values to the ASP.NET UpdateProgress control using the code below, but it doesn't seem to be working:
<script type="text/javascript">
var updateProgress=document.getElementById ('<%=UpdateProgressLinkActivity.ClientID%>');
updateProgress.style.position='absolute';
updateProgress.style.width='250px';
updateProgress.style.height='100px';
updateProgress.style.top='0px';
updateProgress.style.left='0px';
</script>
The control name is just copied and pasted.