【轉】如何在ASP.NET 2.0中定製Expression Builders

expressions是asp.net 2.0中的新特點,它能夠使你在asp.net的頁面裏很方便的使用自定義的屬性. 在ASPX頁裏只要使用$符號就能夠訪問到,你定製的屬性了. 例如咱們看個例子: ASPX頁面中以下:web

< asp:SqlDataSource  ID ="SqlDataSource1"  runat ="server"  ConnectionString ="<%$connectionStrings:Pubs %>"  SelectCommand ="select * from catalog" ></ asp:SqlDataSource >

web.config文件中以下:express

<configuration> 
    <appSettings/> 
  <connectionStrings> 
    <add name="Pubs" connectionString="server=localhost;database=getwant;Trusted_Connection=yes"/> 
  </connectionStrings> 
</configuration> 

由於在web.config中默認就有了connectionStrings的這個節點,因此咱們很方便的使用add增長了一個屬性Pubs. 而如何自定義咱們本身使用的節點呢?例如:<%$ Version:MajorMinor%>能夠顯示當前環境下asp.net的主版本號和次版本號呢? 若是咱們直接在頁面中輸入上面的表達式,編譯器會告訴你,Version並無被定義,請在expressionBuilders節點中定製.其實這時候就要用到ExpressionBuilder類了.
System.Web.Compilation.ExpressionBuilder 就是expression builders的基類. 咱們看看web.config中的設置:app

<compilation debug="true">
            <expressionBuilders>
                <add expressionPrefix="Version" type="VersionExpressionBuilder"/>
            </expressionBuilders>
        </compilation>

怎麼樣是否是很簡單呢?定義一個expressionPrefix爲Version就能夠了. 不過有人說那個type後面的是什麼意思呢,有VersionExpressionBuilder這個類嗎? 其實這個是咱們本身繼承了ExpressionBuilder的類.asp.net

public class VersionExpressionBuilder:ExpressionBuilder
{
    public override CodeExpression GetCodeExpression(BoundPropertyEntry entry,object parsedData,ExpressionBuilderContext context)
    {
        string param = entry.Expression;
        if (string.Compare(param, "All", true) == 0)
        {
            return new CodePrimitiveExpression(string.Format("{0}.{1},{2}.{3}", Environment.Version.Major, Environment.Version.Minor, +
                Environment.Version.Build, Environment.Version.Revision));
        }
        else if (string.Compare(param, "MajorMinor", true) == 0)
        {
            return new CodePrimitiveExpression(string.Format("{0}.{1}", Environment.Version.Major, Environment.Version.Minor));
        }
        else
            throw new InvalidOperationException("User $ Version:All or $ Version:MajorMinor");
    }
}

這時候咱們在ASPX頁面中以下設置就能夠經過編譯了:ide

 ASP.NET   < asp:Literal  ID ="Literal1"  runat ="server"  Text ="<% $ Version:MajorMinor %>" ></ asp:Literal >

顯示的爲"ASP.NET 2.0" 把表示式改成:<%$ Version:All %>就會顯示爲"ASP.NET 2.0,50727.42 "ui

相關文章
相關標籤/搜索