zoukankan      html  css  js  c++  java
  • Asp.Net程序目录下文件夹或文件操作导致Session失效的解决方案

    1、配置web.config

    <system.web>
        <sessionState mode="StateServer" stateConnectionString="tcpip=127.0.0.1:42424" sqlConnectionString="data 
        source=127.0.0.1;Trusted_Connection=yes" cookieless="false" timeout="40"/>
    </system.web>

    2、在Global.asax中添加启动启动ASP.NET 状态服务代码

    void Application_Start(object sender, EventArgs e)
        {
            // 在应用程序启动时运行的代码
            try
            {
                //启动ASP.NET 状态服务
                string g_serviceName = "aspnet_state";
    
                System.ServiceProcess.ServiceController[] serviceControllers = 
                    System.ServiceProcess.ServiceController.GetServices();
    
                foreach (System.ServiceProcess.ServiceController service in serviceControllers)
                {
                    if (service.ServiceName == g_serviceName)
                    {
                        if (service != null && service.Status != System.ServiceProcess.ServiceControllerStatus.Running)
                        {
                            service.Start();
                   SimpleLogHelper.WriteError(g_serviceName + "服务已开启");
                        }
                        else
                        {
                            if (service == null)
                            {
                                SimpleLogHelper.WriteError(g_serviceName + "服务未安装");
                            }
                            else
                            {
                                SimpleLogHelper.WriteError(g_serviceName + "服务正在运行...");
                            }
                        }
                        break;
                    }
                }
            }
            catch (Exception ex)
            {
                SimpleLogHelper.WriteError(ex.ToString());
            }
        }
  • 相关阅读:
    docker mysql 主从配置
    在docker上安装运行mysql实例
    mongodb分片集搭建
    mongodb片健的选取及更改
    MySQL 5.7的多源复制
    percona-toolkit使用教程
    Python基础操作-集合
    nginx location 在配置中的优先级
    OpenResty知识汇集
    开源分布式日志框架
  • 原文地址:https://www.cnblogs.com/yuzhihui/p/7091013.html
Copyright © 2011-2022 走看看