开发者

How do I render User Control children at a specific location?

I have a very simplistic user control that looks like this:

<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="wfWindow.ascx.cs" Inherits="webfanatix.co.za.wfWindow" %>
<div>Just a test...[x]</div>

with this code behind:

[ParseChildren(false)]
[PersistChildren(true)]
public partial class wfWindow : System.Web.UI.UserControl
{
    protected override void Render(HtmlTextWriter writer)
    {
        RenderChildren(writer);
    }
}

And the usage thereof looks like this:

<wf:wfWindow runat="server">This content should go where [x] is.</wf:wfWindow>

I'm no ASP.NET pro, so how do I get the content to render exactly where the [x] appears in my user control?

开发者_开发问答

RenderChildren is rendering my content, but it is only appended to the end of the UserControl output. I need it to go and sit right where [x] marks the spot.

Thanks in advance!


Change [X] into a control of it's own that can hold other controls, such as a placeholder or a panel.

Then override AddParsedSubObject(). The default implementation of this just adds the controls to the usercontrol's Controls collection - which means they get added to the end. Override this to add them to your placeholder.

   protected override void AddParsedSubObject(Object obj) 
   {
         PanelWhereXIs.Add(obj);
   }


If you want the implementation to decide where to put the content, then look into templated user controls.

Otherwise, use a placeholder control and override the AddParsedSubObject method

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜