<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
해당 태그에 관한 짧은 이야기...
web.config 파일 작업중에 해당 태그를 선언하고자 하면 인텔리젼스 기능으로 나타나는 목록에는
http://schemas.microsoft.com/.NetConfiguration/v2.0 <-- 이것이 존재하지 않는다
여러모로 찾아보고 내가 얻은 정보는 vs 의 버그라고 한다.
그래서 해결방법은 다음과 같았다.
<configuration> <-- 태그로 선언되어진 부분을 임의로 수정한다
<configuration xmlns="http://schemas.microsoft.com/.NetConfiguration/v2.0"> <-- 이렇게말이다
그럼 membership -> providers -> add 속성에
connectionstringname을 비롯한 속성을 설정한다.
다만 configuration 을 수정 후에는 인텔리젼스 기능이 멈춘다는 ㅜㅜ
슬픈이야기...
댓글
댓글 쓰기