AppSettingsExpressionBuilder 類別
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
從 Web.config 檔案的 <appSettings>
區段,擷取宣告式運算式中所指定的值。
public ref class AppSettingsExpressionBuilder : System::Web::Compilation::ExpressionBuilder
public class AppSettingsExpressionBuilder : System.Web.Compilation.ExpressionBuilder
type AppSettingsExpressionBuilder = class
inherit ExpressionBuilder
Public Class AppSettingsExpressionBuilder
Inherits ExpressionBuilder
- 繼承
範例
下列程式代碼範例示範如何在未編譯的頁面中擷取應用程式設定值。
<%@ Page Language="C#" CompilationMode="Never" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Noncompiled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
Welcome to the
<asp:Literal ID="Literal1" runat="server"
Text="<%$ AppSettings: thisSeason %>" /> Sale!
</div>
</form>
</body>
</html>
<%@ Page Language="VB" CompilationMode="Never" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
<title>Noncompiled Page</title>
</head>
<body>
<form id="form1" runat="server">
<div>
Welcome to the
<asp:Literal ID="Literal1" runat="server"
Text="<%$ AppSettings: thisSeason %>" /> Sale!
</div>
</form>
</body>
</html>
此程式代碼會從 Web.config 檔案擷取下列表達式。
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
<appSettings>
<add key="thisSeason" value="Fall"/>
</appSettings>
</configuration>
備註
類別 AppSettingsExpressionBuilder 提供 Web.config 檔案區段中值的 <appSettings>
存取權。
<appSettings>
Web.config 檔案的 區段包含索引鍵/值組中的應用程式特定值。
藉由指派表單的表達式來擷取應用程式值
<%$ AppSettings: appSettingsKey %>
至控件宣告中的屬性。 冒號之前的表達式部分 (:) 會指定要擷取的運算式類型,而冒號之後的部分則表示索引鍵。 上述表達式會從 Web.config 檔案擷取下列值。
<appSettings>
<add key="appSettingsKey" value="appSettingsValue"/>
</appSettings>
當頁面剖析器遇到具有 AppSettings
前置詞的表達式時,它會建立 類別的 AppSettingsExpressionBuilder 實例來處理表達式。
如果在將編譯的頁面中遇到表達式, AppSettingsExpressionBuilder 對象會產生程序代碼,以從 Web.config 檔案擷取指定的值。 此程式代碼會在產生的頁面類別執行期間執行。 如果在不會編譯的頁面中遇到表達式,當 AppSettingsExpressionBuilder 剖析和執行頁面時,物件會從 Web.config 檔案傳回值。
建構函式
AppSettingsExpressionBuilder() |
初始化 AppSettingsExpressionBuilder 類別的新執行個體。 |
屬性
SupportsEvaluate |
傳回值,指出是否可在未編譯的頁面中評估運算式。 |
方法
Equals(Object) |
判斷指定的物件是否等於目前的物件。 (繼承來源 Object) |
EvaluateExpression(Object, BoundPropertyEntry, Object, ExpressionBuilderContext) |
從 Web.config 檔案的 |
GetAppSetting(String) |
從 Web.config 檔案的 |
GetAppSetting(String, Type, String) |
從 Web.config 檔案的 |
GetCodeExpression(BoundPropertyEntry, Object, ExpressionBuilderContext) |
傳回程式碼運算式,用來在產生的頁面類別中執行屬性指派。 |
GetHashCode() |
做為預設雜湊函式。 (繼承來源 Object) |
GetType() |
取得目前執行個體的 Type。 (繼承來源 Object) |
MemberwiseClone() |
建立目前 Object 的淺層複製。 (繼承來源 Object) |
ParseExpression(String, Type, ExpressionBuilderContext) |
在衍生類別中覆寫時,傳回表示剖析的運算式之物件。 (繼承來源 ExpressionBuilder) |
ToString() |
傳回代表目前物件的字串。 (繼承來源 Object) |