포워드(forward),액션태그(actiontag)
forward와 sendRedirect의 차이 한마디로 데이터를 가지고 가냐 아니냐의 차이다 forward 아이디 : 이름 : 바로 3페이지로 보낸다 데이터가 저장되어 있다. sendRedirect 아이디 : 이름 : 바로 2페이지로 보낸다 3페이지에 값이 없다. 자바 빈(VO) package com.example.bean; public class quizVO { private String id,pw,name,address,kor,math ; public quizVO(String id, String pw, String name, String address, String kor, String math) { super(); this.id = id; this.pw = pw; this.name = name; t..
2024. 1. 23.