ImportCatalogPart.ImportedPartLabelText 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取或设置当用户导入一个说明文件后显示的文本,该文本说明或描述导入控件目录中的相应导入控件。
public:
property System::String ^ ImportedPartLabelText { System::String ^ get(); void set(System::String ^ value); };
public string ImportedPartLabelText { get; set; }
member this.ImportedPartLabelText : string with get, set
Public Property ImportedPartLabelText As String
属性值
包含标签的文本的字符串。 默认值是一条由 .NET Framework 提供的、特定于区域性的消息。
示例
下面的代码示例演示如何以声明方式和编程方式使用 ImportedPartLabelText 属性。 有关运行示例所需的完整代码和说明,请参阅类概述的示例 ImportCatalogPart 部分。
在代码的以下部分中,请注意, ImportedPartLabelText 属性值是以声明方式为控件设置的。
<asp:CatalogZone ID="CatalogZone1" runat="server">
<ZoneTemplate>
<asp:ImportCatalogPart ID="ImportCatalogPart1"
runat="server"
Title="My ImportCatalogPart"
OnPreRender="ImportCatalogPart1_PreRender"
BrowseHelpText="Type a path or browse to find a control's
description file."
UploadButtonText="Upload Description File"
UploadHelpText="Click the button to upload the description
file."
ImportedPartLabelText="My User Information WebPart"
PartImportErrorLabelText="An error occurred while trying
to import a description file." />
</ZoneTemplate>
</asp:CatalogZone>
<asp:CatalogZone ID="CatalogZone1" runat="server">
<ZoneTemplate>
<asp:ImportCatalogPart ID="ImportCatalogPart1"
runat="server"
Title="My ImportCatalogPart"
OnPreRender="ImportCatalogPart1_PreRender"
BrowseHelpText="Type a path or browse to find a control's
description file."
UploadButtonText="Upload Description File"
UploadHelpText="Click the button to upload the description
file."
ImportedPartLabelText="My User Information WebPart"
PartImportErrorLabelText="An error occurred while trying
to import a description file." />
</ZoneTemplate>
</asp:CatalogZone>
在代码的此部分, ImportedPartLabelText 属性值以编程方式分配。
protected void Button1_Click(object sender, EventArgs e)
{
ImportCatalogPart1.Title = "Import Server Controls";
ImportCatalogPart1.BrowseHelpText = "Enter the path to a "
+ "description file.";
ImportCatalogPart1.UploadButtonText = "Upload Description";
ImportCatalogPart1.UploadHelpText = "Upload a description file.";
ImportCatalogPart1.ImportedPartLabelText = "Imported Controls";
ImportCatalogPart1.PartImportErrorLabelText = "An error occurred "
+ "during the import process.";
}
Protected Sub Button1_Click(ByVal sender As Object, _
ByVal e As EventArgs)
ImportCatalogPart1.Title = "Import Server Controls"
ImportCatalogPart1.BrowseHelpText = "Enter the path to a " _
& "description file."
ImportCatalogPart1.UploadButtonText = "Upload Description"
ImportCatalogPart1.UploadHelpText = "Upload a description file."
ImportCatalogPart1.ImportedPartLabelText = "Imported Controls"
ImportCatalogPart1.PartImportErrorLabelText = "An error occurred " _
& "during the import process."
End Sub
在浏览器中加载页面时,可以使用 “显示模式 ”下拉列表控件选择“ 目录模式 ”,并将页面切换到目录模式。 在目录模式下的页面和描述文件上传后,请注意控件的用户界面 (UI) ImportCatalogPart 中显示的各种文本字符串。 如果单击“ 上传说明文件 ”按钮,UI 中多个属性的文本将更改,包括属性的文本 ImportedPartLabelText 。
注解
属性 ImportedPartLabelText 通常用于包含描述控件中包含的 ImportCatalogPart 控件的简短常规标签。