#control {
position: absolute;
right: 0px;
top: 0px;
}
link|improve this question

feedback

2 Answers

up vote 5 down vote accepted

You cannot. That's because ContentPlaceHolder does not render to anything on a page.

You can however wrap a div around it and then apply the styles to it:

<div class="control">
    <asp:ContentPlaceHolder runat="server" ID="Content" />
</div>
link|improve this answer
2  
Your Kung-Fu is strong. – Sergio Tapia Aug 22 '09 at 16:40
feedback

If your intension is to render out a div-element I would suggest that you used the Panel-control instead. You can still add/remove child Controls if you'd like (as with the ContentPlaceHolder).

// In your CSS
.control { position: absolute 0px 0px; }

// In your form
<asp:Panel ID="pnl" Runat="server" CssClass="control" />
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.