UpdateProgress display Problem

  • Thread starter Thread starter Guramrit Singh
  • Start date Start date
G

Guramrit Singh

Hello everybody,
is there any control adapter made for updatepanel and updateprogress.
actually updateprogress control is rendered as display:block, but I want it
as display:inline. and it doesn't contain property like rendermode or style.
I think I can made it possible using control adapter.

Any other solution for this.

Thanx in advance
 
Hi

you can set your progesstemplates innerelements style to what every
you like ...
even display in any position of the screen with absolute positioning

<asp:UpdateProgress ID="UpdateProgress1" runat="server">
<ProgressTemplate>
<div class="CustomStyle">
//display elements will go here
</div>
</ProgressTemplate>
</asp:UpdateProgress>

best of luck

Munna
 
Back
Top