我们希望将应用程序中的 SessionMode 从 Inrpoc 更改为 SQLServer 。在我们的配置文件中,我们有
<connectionStrings>
<!-- !!! The connection-string to the database used by the application tier -->
<add name="serverRepository" providerName="System.Data.SqlClient" connectionString="server=serverName;database=databaseName;uid=uid;pwd=password"/>
</connectionStrings>
<system.web>
<sessionState mode="InProc" cookieless="false" timeout="20"/>
</system.web>
我正在关注this链接以了解并应用更改。但是这里的连接字符串仅在SessionState标记中定义。 它是强制性的吗?
另外,我应该记住其他事情来实现这一转变。