ImportCatalogPart.BrowseHelpText 属性

定义

获取或设置一条文本消息,该消息指示用户浏览至一个说明文件的位置。

public:
 property System::String ^ BrowseHelpText { System::String ^ get(); void set(System::String ^ value); };
public string BrowseHelpText { get; set; }
member this.BrowseHelpText : string with get, set
Public Property BrowseHelpText As String

属性值

包含文本消息的字符串。 默认值是一条由 .NET Framework 提供的、特定于区域性的消息。

示例

下面的代码示例演示如何以声明方式和编程方式使用 BrowseHelpText 属性。 有关运行示例所需的完整代码和说明,请参阅类概述的示例 ImportCatalogPart 部分。

在代码的以下部分中,请注意, BrowseHelpText 属性值是以声明方式为控件设置的。

<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>

在代码的此部分, BrowseHelpText 属性值以编程方式分配。

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 中多个属性的文本将更改,包括属性的文本 BrowseHelpText

注解

属性 BrowseHelpText 为用户提供在添加导入控件的过程中必须执行的第一项操作的简单概述:通过键入路径或浏览到文件来提供说明文件的位置。 为此属性提供自定义值的一个典型原因是,如果你有针对用户的特殊说明,例如用户应浏览到以查找说明文件的特定网络共享。

适用于

另请参阅