我在面板内的表格中有一个标签。
编辑和保存工作正常,但是当我尝试显示它们时,标签没有显示数据?:/
<asp:Label ID="lblfullname" runat="server"
Text="Label" Visible="False" EnableViewState="False"></asp:Label>
这是后面的代码
public void DisplayProfile()
{
this.SetElementsForDisplaying();
lblfullname.Text = this.Profile.ProfileDetail.FullName;
}
void SetElementsForDisplaying()
{
//pnlStart.Visible = false;
pnlDisplayValues.Visible = true;
pnlSetValues.Visible = false;
litUserTitle.Visible = true;
litUserTitle.Text = string.Format("Display profile for {0}", this.Profile.UserName);
lblfullname.Visible = true;
}