본문 바로가기

전체 글

(52)
학사 프로그램 만들기 - 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 package com.example.domain; import java.util.Date; public class StudentsVO { private String scode; private String sname; private String dept; private String year; private Date Birthday; private S..
c라이브러리를 이용한 학사 페이징 작업 -ProfessorsVO.java 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 package com.example.domain; import java.util.Date; public class ProfessorsVO { private String pcode; private String pname; private String dept; private Date Hiredate; private int salary; private String title; public String ..
$.ajax을 이용한 입력,삭제,수정,읽기 프로그램(페이징 프로그램,검색 프로그램) com.example.domain>AddressVO.java 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 package com.example.domain; public class AddressVO { private int id; private String name; private String address; private String tel; public int getId() { return id; } public void setId(int id) { this.id = id; } public String getName() { return..
페이지 번호로 이동하기 https://colorscripter.com/ 코드 색깔 변환 Color Scripter Simple & Flexible Syntax HighLighter colorscripter.com 실습영상 -BBSVO.java(Class) package com.example.domain; import java.util.Date; public class BBSVO { private int id; private String title; private String content; private Date wdate; public int getId() { return id; } public void setId(int id) { this.id = id; } public String getTitle() { return ti..