您的位置:首页 > 编程语言 > ASP

Unable to use SQL Server because ASP.NET version 2.0 Session State is not installed on the SQL serve

2014-01-09 16:48 1061 查看
原帖地址:http://www.power-programming.co.uk/post/2010/11/12/Unable-to-use-SQL-Server-because-ASPNET-version-20-Session-State-is-not-installed-on-the-SQL-server-Please-install-ASPNET-Session-State-SQL-Server-version-20-or-above.aspx

I installed a new aspstate database on a virgin server, and we kept getting the following 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'd installed it from the Version 2 framework, and got successful response

C:\Windows\Microsoft.NET\Framework\v2.0.50727>aspnet_regsql.exe -ssadd -sstype c -d ASPState -S eduat1sql1 -E

Start adding session state.

....

Finished.

To use this custom session state database in your web application, please specify it in the configuration file by using the 'allowCustomSqlDatabase' and 'sqlConnectionString' attributes in the <system.web>\<sessionState> section.

You will note, that I have used the integrated switch, this is because I don't want the ultimate ASPNET user to have database creation permissions. Initially, I have the ASPNET database user db_datareader
and db_datawriter roles and I think this is where the issue arose. I removed this permissions and allocated db_owner role and all is working!
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐