我的共享点页面中有一个控件
<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)
}
任何想法如何让任何人工作
答案 0 :(得分:0)
Literal无所作为。 请尝试使用Label。