在共享虚拟主机上的 SQL Server 中存储会话

发布于 2025-01-07 16:50:39 字数 882 浏览 0 评论 0原文

我正在尝试将会话存储在共享虚拟主机上的 SQL Server 2008 中。到目前为止我所做的是:

  1. 针对数据库运行“InstallPersistSqlState.sql”
  2. 在命令行中 我制作了这个脚本:aspnet_regsql -ssadd -sstype c -d SessionDb -sqlexportonly c:\SessionScript.sql(使用 aspnet_regsq.exe)
  3. 针对数据库运行 SessionScript.sql

创建了两个表(ASPStateTempApplicationsASPStateTempSessions)以及所有必要的存储过程。

我的 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:

  1. run "InstallPersistSqlState.sql" against the database
  2. in the command line I made this script: aspnet_regsql -ssadd
    -sstype c -d SessionDb -sqlexportonly c:\SessionScript.sql
    (using aspnet_regsq.exe)
  3. 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

触ぅ动初心 2025-01-14 16:50:39

您需要联系网络主机 - 他们需要为您安装 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?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文