HTML 파일 한글깨짐 해결법
Back-End/Problems 2019. 4. 29. 09:491 2 3 4 5 6 7 8 9 10 11 | <head> <meta http-equiv="Content-Type" content="text/html; charset=EUC-KR" /> </head> <h1>Forward Tag Example</h1> <form method=post action="forwardTag1_1.jsp"> 아이디 : <input name="id"> <p /> 패스워드 : 패스워드 : <input type="password" name="pwd"> <p /> <input type="submit" value="보내기"> </form> | cs |
책 162페이지.
<head> 부분에
<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR" /> (문자셋을 변환하는)코드 추가하면 해결됨
출처
https://blog.naver.com/vnemftnsska2/221497907063
'Back-End > Problems' 카테고리의 다른 글
톰캣과 오라클 서버 충돌시 (0) | 2019.05.01 |
---|---|
오라클 삭제 방법 (0) | 2019.05.01 |
JAVA 파일 이클립스 없이 컴파일 하기(class파일 만들기) (0) | 2019.04.30 |
액션 태그 주석 (0) | 2019.04.30 |
HTTP 500오류 해결방법 (0) | 2019.04.28 |