1、获取环境变量
string strAuthUser = request.ServerVariables["AUTH_USER"]
以上这行代码是用来获取当前用户的登录名
2、IIS站点设置,除了windows验证启用,其余的全部设置禁用
3、对WEB配置
web.config中加入(针对本站点,建议采用)
<httpRuntime maxRequestPathLength="360" maxQueryStringLength="1024" />
也可以在(针对所有站点)
C:\Windows\System32\inetsrv\config里找到applicationHost.config文件,在,<system.webServer>路径下添加如下配置:添加如下配置:
- <security>
- <requestFiltering>
- <requestLimits maxQueryString="4080" />
- </requestFiltering>
- </security>
时间: 2024-10-03 23:07:11