2009-04-28 2 views

답변

1

당신이 네임 스페이스를 참조를 추가하고 수입을 의미하는 경우는의 app.config 또는 Web.config의

<?xml version="1.0"?> 

<configuration> 

    <configSections> 
    <section name="nhaml" type="NHaml.Configuration.NHamlConfigurationSection, NHaml"/> 
    </configSections> 

    <nhaml autoRecompile="true"> 
    <assemblies> 
     <add assembly="NHaml.Samples.Mvc"/> 
    </assemblies> 
    <namespaces> 
     <add namespace="NHaml.Web.Mvc"/> 
     <add namespace="NHaml.Samples.Mvc.Controllers"/> 
    </namespaces> 
    </nhaml> 

... 

</configuration> 
에서 할