2012-11-10 98 views
0

我想在我的默認/根web.config中設置自定義會話提供程序,以便它的所有子站點都能夠自動使用它。IIS 7自定義會話提供程序在根Web.config

這裏是我的配置:

<configuration> 
    <system.web> 
     <sessionState mode="Custom" customProvider="RedisSessionStateProvider"> 
      <providers> 
       <add name="RedisSessionStateProvider" 
        type="Harbour.RedisSessionStateStore.RedisSessionStateStoreProvider" 
        host="xxx.yyy.zzz" clientType="pooled" /> 
      </providers> 
     </sessionState> 
    </system.web> 
</configuration> 

我的問題是,供應商依賴於幾個組件,而我不知道的正確方法引用它們在我的根web.config使得子網站可以使用它。

我想避免使用GAC。

回答

相關問題