jsp 오류조치 | [jsp] 다중업로딩 후 파일리스트 안보일때 오류 조치법
페이지 정보
작성자 aiiBook 쪽지보내기 메일보내기 자기소개 아이디로 검색 전체게시물 작성일17-04-27 14:46 조회27,194회 댓글0건관련링크
본문
2010/11/10 [Ver. 5.2.0]
브라우저의 주소입력창에 직접 관리자의 'swf_filelist.jsp?act=list'를 호출했을 때
Page directive: illegal to have multiple occurrences of contentType with different values
위와 같은 에러메세지가 보이면,
charset을 두번 선언해서 발생하는 문제이므로 swf_filelist.jsp의 첫번째 줄 마지막에 보면
contentType="text/plain;charset=utf-8"
이렇게 되어있는 것을
contentType="text/plain;"
이렇게 문자셋 선언부만 삭제하면 됨.
때에 따라서는 contentType="text/plain;까지 전체를 삭제
브라우저의 주소입력창에 직접 관리자의 'swf_filelist.jsp?act=list'를 호출했을 때
Page directive: illegal to have multiple occurrences of contentType with different values
위와 같은 에러메세지가 보이면,
charset을 두번 선언해서 발생하는 문제이므로 swf_filelist.jsp의 첫번째 줄 마지막에 보면
contentType="text/plain;charset=utf-8"
이렇게 되어있는 것을
contentType="text/plain;"
이렇게 문자셋 선언부만 삭제하면 됨.
때에 따라서는 contentType="text/plain;까지 전체를 삭제