0

我在 SharePoint 中开发了一个小型应用程序。我正在使用自定义应用程序页面并在 Page_Load() 方法下对该页面加载 .ascx 控件。在 .ascx 控件中,我创建了一个带有文本框和按钮控件的小表单。在此按钮单击事件下,我想更改标签的文本属性,例如: lblConfirmation.Text = " Confirmation is OK "; 但它没有改变文本。它什么也不显示,因为我在标签控件中将文本属性设置为空。

<asp:Label ID="lblConfirmation" runat="server" Text="" ></asp:Label>

任何想法,有什么问题?

4

1 回答 1

0

你的asp:Label定义中的这个单引号是什么?请检查这个

<'asp:Label ID="lblConfirmation" runat="server" Text="" ><'/asp:Label>

它必须替换为

    <asp:Label ID="lblConfirmation" runat="server" Text="" ></asp:Label>

尝试在您的 Visual Studio 中调试代码,如果您遇到任何错误,请告诉我们?
谢谢

于 2012-12-13T05:42:57.740 回答