I am using the following code to assign values to asp.net updateprogress control but having no luck
<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 a copy paste.