ImportCatalogPart.BrowseHelpText 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得或設定文字訊息,指示使用者瀏覽至描述檔的位置。
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屬性提供使用者新增匯入控件時必須執行之第一件事的簡單概觀:輸入路徑或瀏覽檔案來提供描述檔案的位置。 為此屬性提供自定義值的典型原因是您有使用者的特殊指示,例如他們應該流覽的特定網路共用來尋找描述檔。