This repository has been archived on 2026-06-20. You can view files and clone it. You cannot open issues or pull requests or push a commit.
wsh5485 9b141ddd07 feat(数据库): 添加操作日志表结构
新增操作日志表用于记录系统功能操作,包含功能ID、操作类型和时间字段
2025-06-16 15:37:33 +08:00

E3_ycsys 系统部署指南

IIS 应用池设置

  1. 创建新的应用程序池:

    • .NET CLR 版本:v4.0
    • 托管管道模式:集成模式
    • 标识:ApplicationPoolIdentity
  2. 基本设置:

    • 启动模式:AlwaysRunning
    • 空闲超时:0(禁用)

数据库连接配置

  1. 修改Web.config文件:
<connectionStrings>
  <add name="E3_ycsysConnection" 
       connectionString="Data Source=162.14.110.130,2433;Initial Catalog=e3test;User ID=sa;Password=your_password;" 
       providerName="System.Data.SqlClient"/>
</connectionStrings>

文件夹权限设置

  1. 授予IIS应用程序池账户权限:
    • IIS_IUSRS组:读取和执行权限
    • 应用程序池账户:修改权限

系统要求

  • IIS 7.0+
  • .NET Framework 4.0+
  • SQL Server 2008+
S
Description
No description provided
Readme 51 KiB
2025-12-05 01:23:22 +08:00
Languages
ASP.NET 54.7%
C# 45.3%