将sessionState模式从“InProc”修改为“SQLServer”

时间:2016-05-24 16:22:53

标签: c# sql-server sql-server-2012 .net-3.5

我们希望将应用程序中的 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标记中定义。 它是强制性的吗?

另外,我应该记住其他事情来实现这一转变。

0 个答案:

没有答案