0

I have a PlaceHolder component in my project, but I want to place it in right part of the page, as now it's placed in the top. Is there any opportunity to change it's alighn?

<asp:PlaceHolder ID="PlaceHolder1" runat="server" Visible="true">  
        <dx:ReportParametersPanel ID="reportParameterPanel1" runat="server" ReportViewerID="ReportViewer1">    
        </dx:ReportParametersPanel>
</asp:PlaceHolder>
Andrew Barber
  • 39,603
  • 20
  • 94
  • 123
Marianna
  • 35
  • 1
  • 10

1 Answers1

1

I think you should enclose the entire Place Holder code in a Div and set the Style of the Div to Float:Right.

For more controlled positioning of the Div, use:

Position:Absolute;
Geek
  • 429
  • 2
  • 5