I have a simple div on html, something like:
<div class="warning">
<h3>Please make sure:</h3>
<asp:PlaceHolder id="phWarnings" runat="server"></asp:PlaceHolder>
<br />
<a href="javascript:void(0)" onClick="$('#warning').hide()">Okay</a>
</div>
The PlaceHolder is being populated with a couple of radio buttons, a covering div, some h4 and p elements.
However, when the page shows up, the whole div (along with its children contents) are completely outside the warning div. I thought I was messing up the div structure in codebehind so I just commented out everything and did this:
phWarnings.Controls.Add(new LiteralControl("Meh"));
Guess what? Yeah, the string "Meh" was outside the warning div too. The HTML (on view source) option shows this:
<div class="warning">
<h3>Please make sure:</h3>
<br />
<a href="javascript:void(0)" onClick="$('#warning').hide()">Okay</a>
</div>
Meh
I have done the similar things other times but never faced this problem. I was hoping you guys could shed some light on why placeholder decided to go out of parent div or how to avoid it. removing the class from warning div etc doesn't seem to work.
Any idea why this is happening please?