ASP的CompositeControl及的ScriptManager(ASP CompositeC

2019-10-19 07:19发布

我真的很新的Web控件/ CompositeControl的世界,我有一个小测试类,我摆弄。 这只是点击时更新一个LinkBut​​ton。 工作的事情伟大的,当我离开它的UpdatePanel的。 但是,当我尝试运行它里面我仍然得到一整页的POST响应。 我怎样才能让一个UpdatePanel内这类工作?

这里的类:

public class Test2 : CompositeControl 
{
    private static readonly object testButtonEvent = new object();

    public event EventHandler OnTestClick
    {
        add { Events.AddHandler(testButtonEvent, value); }
        remove { Events.RemoveHandler(testButtonEvent, value); }
    }

    private LinkButton testLinkButton;

    public virtual string testLinkButtonText
    {
        get
        {
            object o = ViewState["testLinkButtonText"];
            return (o == null) ? String.Empty : (string)o;
        }
        set
        {
            if (value == null)
                ViewState.Remove("testLinkButtonText");
            else
                ViewState["testLinkButtonText"] = value;
        }
    }   

    protected override void OnInit(EventArgs e)
    {
        /* This stuff makes it ajax friendly but stops the text rendering
        EnsureChildControls();

        ScriptManager ScMan = ScriptManager.GetCurrent(Page);
        if (ScMan != null)
        {
            ScMan.RegisterAsyncPostBackControl(testLinkButton);
        }            */

        base.OnInit(e);
    }

    protected override void CreateChildControls()
    {
        Controls.Clear();

        testLinkButton = new LinkButton();
        testLinkButton.Command += new CommandEventHandler(testClick);
        testLinkButtonText = "Test ViewState Text";

        Controls.Add(testLinkButton);
    }

    void testClick(object sender, CommandEventArgs e)
    {
        testLinkButtonText = "Updated Text On " + DateTime.Now.ToLongTimeString();
    }

    protected override void Render(HtmlTextWriter writer)
    {
        RenderContents(writer);
    }

    protected override void RenderContents(HtmlTextWriter writer)
    {
        EnsureChildControls();

        testLinkButton.Text = testLinkButtonText;
        testLinkButton.RenderControl(writer);            
    }

}

在代码中OnInit()使控制正常后,但我没有得到LinkBut​​ton的更新文本。 它仍然发射了事件 - 当我调试我可以看到它被调用。 什么是设置此控制了在一个UpdatePanel中使用的正确方法?

使用方法,以防万一:

<asp:UpdatePanel runat="server" UpdateMode="Conditional">
    <ContentTemplate>
        <cc:Test2 ID="jqTest02" runat="server" />
    </ContentTemplate>
</asp:UpdatePanel>

Answer 1:

你必须给该按钮的ID属性......这是在客户端JavaScript驱动使用UpdatePanel 。 更具体地说,在控制列表的上市拦截并做异步回发。

testLinkButton.ID = "btn";


文章来源: ASP CompositeControl & ScriptManager