在 IIS 场中为 ASP.NET 应用程序设置会话状态数据库有多难?

发布于 2024-12-19 07:17:49 字数 189 浏览 1 评论 0原文

为 IIS 场中运行的 ASP.NET 应用程序设置会话状态数据库有多难?

我收到的建议是永远不要在新的 ASP.NET 4 / IIS 7 应用程序中以会话状态存储任何内容。这是在一次讨论之后,我在讨论中指出该应用程序的容量很小并且在会话中存储的内容很少。我收到此建议的主要理由是,在我们的网络场中设置 IIS 和数据库来存储会话状态将极其困难。

How hard is it to setup a session state database for ASP.NET application running in an IIS farm?

I've received advice to never store anything at all in session state in my new ASP.NET 4 / IIS 7 application. This is following a discussion where I pointed out that this application will have low volume and store very little in session. The main justification I was given for this advice is that it would be extremely difficult to setup IIS and a database to store session state in our web farm.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

梦幻的心爱 2024-12-26 07:17:49

如果您有足够的权限,这很简单。您需要做的就是使用正确的选项运行 aspnet_regsql.exe 并连接字符串。您需要能够创建表、存储过程、用户定义的数据类型和 SQL 作业。如果您没有,您的 DBA 应该有足够的权限来运行此作业。确保使用 .NET 4 版本的可执行文件,因为以前的版本有所不同。

您可以在 c:\windows\Microsoft .NET\Framework\ 中找到 aspnet_regsql.exe

Trivial if you have sufficient permission. All you need to do is run aspnet_regsql.exe with the proper options and connection string. You need to be able to create tables, stored procedures, user-defined data types, and a SQL job. Your DBA should have sufficient privileges to run this job if you don't. Make sure you use the .NET 4 version of the executable as previous versions differ.

You can find aspnet_regsql.exe in c:\windows\Microsoft .NET\Framework\<version>

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