ClientTarget.Alias 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得使用者代理程式的別名。
public:
property System::String ^ Alias { System::String ^ get(); };
[System.Configuration.ConfigurationProperty("alias", IsKey=true, IsRequired=true)]
[System.Configuration.StringValidator(MinLength=1)]
public string Alias { get; }
[<System.Configuration.ConfigurationProperty("alias", IsKey=true, IsRequired=true)>]
[<System.Configuration.StringValidator(MinLength=1)>]
member this.Alias : string
Public ReadOnly Property Alias As String
屬性值
用於參考特定使用者代理程式的名稱。
- 屬性
範例
下列程式代碼範例示範如何從現有 Web 應用程式的組態檔取得 Alias 。
// Get the first client target
// in the collection.
clientTarget = clientTargets[0];
// Get the alias.
alias = clientTarget.Alias;
msg = String.Format(
"Alias: {0}\n",
alias);
' Get the first client target
' in the collection.
clientTarget = clientTargets(0)
' Get the alias.
aliasStr = clientTarget.Alias
msg = String.Format( _
"Alias: {0}" + ControlChars.Lf, aliasStr)
備註
屬性Alias是指alias
組態檔 區段中項目add
clientTarget
的屬性。
ASP.NET 組態預設值包含下列別名:
uplevel
,告知 ASP.NET 傳送 Internet Explorer 6.0 和更新版本支援的 HTML 和 ECMAScript。downlevel
,告知 ASP.NET 將 HTML 和腳本限制為 Internet Explorer 6.0 之前瀏覽器所支援的版本。