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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top