在共享虚拟主机上的 SQL Server 中存储会话
我正在尝试将会话存储在共享虚拟主机上的 SQL Server 2008 中。到目前为止我所做的是:
- 针对数据库运行“InstallPersistSqlState.sql”
- 在命令行中 我制作了这个脚本:
aspnet_regsql -ssadd -sstype c -d SessionDb -sqlexportonly c:\SessionScript.sql
(使用 aspnet_regsq.exe) - 针对数据库运行
SessionScript.sql
。
创建了两个表(ASPStateTempApplications
和 ASPStateTempSessions
)以及所有必要的存储过程。
我的 web.config 文件如下所示:
<sessionState
mode="SQLServer"
allowCustomSqlDatabase="true"
sqlConnectionString="server;Initial Catalog=db;User ID=usr;Password=pwd"
cookieless="false" timeout="20" />
最后,当尝试运行该网站时,我收到此错误:
无法使用 SQL Server,因为 ASP.NET 版本 2.0 会话状态为 未安装在 SQL 服务器上。请安装 ASP.NET 会话状态 SQL Server 2.0 或更高版本。
我在互联网上到处查了一下,但没有找到任何可以帮助我解决这个问题的解决方案。
I am trying to store session in SQL Server 2008 on shared webhosting. What I did until now is:
- run "InstallPersistSqlState.sql" against the database
- in the command line I made this script:
aspnet_regsql -ssadd
(using aspnet_regsq.exe)
-sstype c -d SessionDb -sqlexportonly c:\SessionScript.sql - run
SessionScript.sql
against the database.
Two tables were created (ASPStateTempApplications
and ASPStateTempSessions
) as well as all the necessary stored procedures.
My web.config
file looks like this:
<sessionState
mode="SQLServer"
allowCustomSqlDatabase="true"
sqlConnectionString="server;Initial Catalog=db;User ID=usr;Password=pwd"
cookieless="false" timeout="20" />
finally when trying to run the site I an getting this error:
Unable to use SQL Server because ASP.NET version 2.0 Session State is
not installed on the SQL server. Please install ASP.NET Session State
SQL Server version 2.0 or above.
I checked everywhere on the internet but didnt find any solution that can help me with this problem.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要联系网络主机 - 他们需要为您安装 ASPState(但我敢打赌他们不会这样做)。您可能必须使用 InProc 或其他解决方案。您有多个 Web 服务器,还是只有一个?
You need to contact the webhost - they will need to install ASPState for you (but I'll bet they won't do it). You may have to use InProc or another solution instead. Do you have multiple web servers, or just one?