Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
<umbraco:Item field="Aboutustext" runat="server"></umbraco:Item>
i added one filed on my template now i want to acessing that field at server side
how can i access that field and i want to make visible=false
please give me solution.
You can either, give the control an ID...
<umbraco:Item field="Aboutustext" runat="server" ID="myItemControl"></umbraco:Item>
... and reference it in code:
myItemControl.Visible = false;
or just set the control's visibility, like so...
<umbraco:Item field="Aboutustext" runat="server" Visible="false"></umbraco:Item>
Cheers, Lee.
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
acessing Umbraco:Item at server side
<umbraco:Item field="Aboutustext" runat="server"></umbraco:Item>
i added one filed on my template now i want to acessing that field at server side
how can i access that field and i want to make visible=false
please give me solution.
You can either, give the control an ID...
... and reference it in code:
or just set the control's visibility, like so...
Cheers, Lee.
is working on a reply...