我最近在我的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中做一个项目.
我想知道在Web应用程序中从一个页面跳到另一个页面时,连接是否会自动关闭.
或者会显示错误MAX POOL SIZE WAS REACHED?
我将给出一组我在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)