从自定义用户控件更新contenttemplate下页面中控件的ID?

时间:2013-11-29 19:52:11

标签: javascript asp.net sharepoint user-controls

我的共享点页面中有一个控件

    <asp:Content ContentPlaceholderID="PlaceHolderMain" runat="server">
<SharePointWebControls:UIVersionedContent UIVersion="4" runat="server">
    <ContentTemplate>
        <asp:Literal runat="server" id="Literal1" text="" visible="false"></asp:Literal>



    i am trying to access this literal1 from a usercontrol and change the text value of this control or change the ID value of  this control. 

我试过这个来更新DIV控件的id,但它没有用。这是用户控件的一部分。

      HtmlGenericControl control = (System.Web.UI.HtmlControls.HtmlGenericControl)this.Page.FindControl("literal");
        if (control != null)
        {
            control.Attributes.Clear();
            control.Attributes.Add(ID,divid);
            //control.Text = divid.ToString();
            //document.getElementById('var_div').setAttribute('id',val)

        }

任何想法如何让任何人工作

1 个答案:

答案 0 :(得分:0)

Literal无所作为。 请尝试使用Label。