问题描述
我们的网站目前有这个问题。基本上,它只是当我们点击某个特定链接它会弹出一个新窗口发生。
这是我们收到的错误消息:
Our site is currently having this problem. Basically it only happen when we click some particular links where it will pop-up a new window.
This is the error message we receive :
无法发出会话状态请求会话状态服务器。
请确保ASP.NET状态服务已启动,并且
在客户端和服务器端口是相同的。
如果服务器上
远程机器,请确保它接受远程请求
检查的值
HKEY_LOCAL_MACHINE \\系统\\ CurrentControlSet \\服务\\ aspnet_state \\参数\\ AllowRemoteConnection。
如果服务器在本地机器上,如果之前
提到的注册表值不存在或者设置为0,则状态
服务器连接字符串必须使用localhost或127.0.0.1作为
服务器名称
目标网站。
虚空
makeRequest的(StateProtocolVerb,System.String,StateProtocolExclusive,
INT32,INT32,INT32,字节[],INT32,INT32,SessionNDMakeRequestResults
为ByRef)
这是包含的sessionState标签webconfig:
this is the webconfig that contain sessionstate tag :
<的sessionState模式=的StateServer超时=45/>
我已经检查ASP.NET状态服务,并且它已启动并设置为自动
I have check the ASP.NET State Service, and it is currently started and set to automatic
我已经设置错误消息指出,以1注册表,但仍然没有工作。
I have set the registry stated in the error message to 1, but still not working.
推荐答案
1)开始 - >管理工具 - >服务
1) Start–> Administrative Tools –> Services
2)右键单击在ASP.NET状态服务,然后单击开始
2) right click over the ASP.NET State Service and click "start"
*另外,你可以将服务设置为自动,这样它会在重新启动后的工作。
*additionally you could set the service to automatic so that it will work after a reboot.
有关详细信息,你可以检查我的博客文章:http://jamshidhashimi.com/2011/03/16/unable-to-make-the-session-state-request-to-the-session-state-server/
For more details you can check my blog post: http://jamshidhashimi.com/2011/03/16/unable-to-make-the-session-state-request-to-the-session-state-server/
这篇关于无法发出会话状态请求会话状态服务器的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!