使用 SQL Server 进程外进行哪些身份验证
这意味着用户名和密码将存储在 SQL Server 中? SQL Server 和状态服务器身份验证有什么区别
That means user name and password will be stored in SQL Server?
What is difference between SQL Server and state server authentication
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
sqlserver 使用 SQL 数据库来存储会话信息。状态服务器使用名为 ASP.NET State Service 的 Windows 服务来存储会话信息。
任一服务器都允许多个 Web 服务器在多个服务器之间“共享”会话信息。
sqlserver uses an SQL database to store session info. State server uses a windows service called ASP.NET State Service to store session information.
Either one allow for more than one web server to "share" session information across multiple servers.