본문 바로가기

ASP.net with C# (웹폼)

System.ArgumentNullException: '값은 null일 수 없습니다. 문제 해결

C# 프로그래밍을 하다 제목과 같은 황당한 오류를 맞이할 때가 있습니다. 컴파일 타임에는 발견되지 않았던 문제인데 런타임시 "오류메시지는 대부분 어떤페이지 몇째줄, 어떤 클래스 몇째줄에서 이런 오류가 있어요~" 라고 친절하게 알려주지만 이 오류는 Stack Trace를 아무리 유심히 봐도 어디에서 오류가 났다는 건지 단서가 없습니다.

이런 오류는 실제 운영환경에서는 발생하지 않기도 합니다. 개발환경에서 주로 일어나죠. 

 

소스코드에 문제가 있는건지 의심되는 부분을 아무리 수정해 봐도 해결되지 않았습니다.

 

System.ArgumentNullException: '값은 null일 수 없습니다.

매개 변수 이름: key'

Value cannot be null.

Parameter name: key

Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.ArgumentNullException: Value cannot be null.
Parameter name: key

Source Error: An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.

Stack Trace:

제 경우엔 해결책을 다음에서 찾았습니다.

https://docs.microsoft.com/ko-kr/aspnet/visual-studio/overview/2013/using-browser-link

https://efficientuser.com/2017/07/06/browser-link-option-in-visual-studio/

 

비주얼 스튜디오에서 브라우저 링크 옵션 사용을 안함으로 변경해주면 되는 문제네요.

Web.config에서 다음의 태그를 추가하시면 됩니다.


	

 

프로젝트의 성공을 기원합니다.