小编Ash*_*n A的帖子

IIS错误 - HTTP错误500.24 - 内部服务器错误

我最近在我的Windows 7 PC上安装了IIS,当我打开http://localhost/它时显示

********************ERROR**********************  
HTTP Error 500.24 - Internal Server Error
An ASP.NET setting has been detected that does not apply in Integrated managed pipeline mode.  
********************ERROR**********************

********************Detailed Error Information**************  
Module:  ConfigurationValidationModule  
Notification:  BeginRequest  
Handler:  StaticFile  
Error Code:  0x80070032  
Requested URL  :http://localhost:80/  
Physical Path  :C:\inetpub\wwwroot  
Logon Method  :Not yet determined  
Logon User  :Not yet determined  
************************

asp.net iis

4
推荐指数
1
解决办法
2万
查看次数

数据库连接是否在Redirect上自动关闭?

我在ASP.NET中做一个项目.

我想知道在Web应用程序中从一个页面跳到另一个页面时,连接是否会自动关闭.

或者会显示错误MAX POOL SIZE WAS REACHED

asp.net database-connection

2
推荐指数
1
解决办法
492
查看次数

如何在Console应用程序中读取XML文件

我将给出一组我在w3schools XML示例中找到的简单xml行.

我想知道如何从控制台应用程序访问这些数据(我通过控制台应用程序项目插入了app.config)

<?xml version="1.0" encoding="ISO-8859-1"?>
 <bookstore>
   <book category="cooking">
     <title lang="en">Everyday Italian</title>
     <author>Giada De Laurentiis</author>
     <year>2005</year>
     <price>30.00</price>
   </book>
   <book category="children">
     <title lang="en">Harry Potter</title>
     <author>J K. Rowling</author>
     <year>2005</year>
     <price>29.99</price>
   </book>
 </bookstore>
Run Code Online (Sandbox Code Playgroud)

c# xml console-application visual-studio

-2
推荐指数
1
解决办法
1万
查看次数