1. "IIS Express" 확장 프로그램을 설치하면 "IIS Express" 프로그램을 설치하라는 메시지가 표시됩니다.
2. "IIS Express"의 "applicationhost.config" 파일을 엽니다. 프로그램의 경로는 다음과 같습니다. C: Users{{username}}DocumentsIISExpressconfig;
3. 다음 콘텐츠를 찾아 기본 홈페이지를 설정하세요
<defaultDocument enabled="true"> <files> <add value="index.asp" /> <add value="Default.htm" /> <add value="index.htm" /> <add value="index.html" /> <add value="iisstart.htm" /> <add value="default.aspx" /> </files> </defaultDocument>
4. 다음 콘텐츠를 찾아 디렉터리 탐색을 활성화하세요
<directoryBrowse enabled="false" />
5.
<asp enableParentPaths=”true” scriptErrorSentToBrowser=”true”> <cache diskTemplateCacheDirectory=”” /> <limits /> </asp>
6를 활성화합니다. 기본 설정이 완료되었습니다. "Ctrl+Shift+P"를 누른 후 "IIS Express: 웹 사이트 시작"을 입력하여 실행 및 디버깅합니다. .
추천 튜토리얼: vscode 튜토리얼
위 내용은 vscode로 ASP를 디버깅하는 방법의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!