게시판 만들때에 각 라인별로 컬러를 설정할수 있다

          String col= null;
            if(("데이터갯수"% 2) == 0)
            {
                col = "#DCDCDC"; //색깔1
            }
            else
            {
                col ="#F5F5F5" ; //색깔2
            }




ps: 게시물 IP 삽입

<input type='hidden' name='ip' value='<%=request.getRemoteAddr()%>'>
Posted by ilus


,