IIS Express 啓動一個asp的網站,出現一個錯誤web
Active Server Pages 錯誤 'ASP 0131' 不容許的父路徑
對於IIS能夠在可視化的IIS Manager中配置:app
而IIS Express的配置方法以下:.net
1. 在 ...\個人文檔\IISExpress\config\applicationhost.config中63行附近配置 以下code
(將Deny改成Allow)xml
2. 在網站根目錄中的web.config(沒有能夠本身新建)配置以下blog
<?xml version="1.0" encoding="UTF-8"?> <configuration> <system.webServer> <asp enableParentPaths="true"/> </system.webServer> </configuration>
3.完成。啓動網站。文檔