- ViewData
- 타임피커
- 404에러페이지
- ASP.Net Core 404
- 하드 윈도우 복사
- asp.net core Select
- php 캐쉬제거
- XSS방어
- 말줄임표시
- 강제이동
- SSD 복사
- javascript 바코드스캔
- javascript redirection
- 파일업로드 유효성체크
- 맥 오라클설치
- django 엑셀불러오기
- 바코드 스캔하기
- TempData
- javascript 유효성체크
- 파일업로드 체크
- jquery 바코드생성
- ViewBag
- 바코드 생성하기
- Mac Oracle
- XSS PHP
- jquery 바코드
- asp.net dropdownlist
- javascript 바코드 생성
- asp.net Select
- 하드 마이그레이션
목록분류 전체보기 (755)
웹개발자의 기지개
특정 클래스명들을 땡겨올 수 있는 놈이 getElementsByClassName 인데 이는 복수의 배열처리로 연결됨을 꼭 주시해 주기 바란다. getElementById("o_btn")[0] getElementById("o_btn")[1] getElementById("o_btn")[2] ... 이런식으로 index 처리로 여러개의 o_btn class 명들이 있을때 그 순번을 0,1,2 각각 이런식으로 대응된다. cf ) getElementById 는 단일의 id 값을 땡겨올때 (복수가 아니다) 아래의 예제를 참고해보자 ~ 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 .o_btn {backgro..
1 2 3 4 5 6 7 java.sql.SQLException: The server time zone value '´ëÇѹα¹ Ç¥ÁؽÃ' is unrecognized or represents more than one time zone. You must configure either the server or JDBC driver (via the serverTimezone configuration property) to use a more specifc time zone value if you want to utilize time zone support. at com.mysql.cj.jdbc.exceptions.SQLError.createSQLException(SQLError.java:127) ~[..
WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useS..
WARN: Establishing SSL connection without server's identity verification is not recommended. According to MySQL 5.5.45+, 5.6.26+ and 5.7.6+ requirements SSL connection must be established by default if explicit option isn't set. For compliance with existing applications not using SSL the verifyServerCertificate property is set to 'false'. You need either to explicitly disable SSL by setting useS..
mysql DB 상에서 보통 root 로 아무생각없이 깔고, 코딩하면서 돌려볼때 java.sql.SQLException: Access denied for user 'root'@'localhost' (using password: YES) 이런식으로 root 접근허가 불가 에러메세지를 만날수도 있는데 mysql 도 버전업이 되면서 root 비밀번호 규칙도 보다 엄격하게 강화시켜서, 만들어야 정상 동작이 된다. 대소문자, 숫자, 특수문자 다 넣어서 길게 다시 만들도록 하자. cmd 명령프롬프트 창에서 alter user 'root'@'localhost' IDENTIFIED WITH mysql_native_password by '변경할비번'; flush privileges; quit; [MySQL,MariaDB..
1 2 3 4 5 6 7 8 9 10 $ git clone works0@works.cafe24app.com:works0_ibnetworks Cloning into 'works0_works'... Enter passphrase for key '/c/Users/wonpa/.ssh/id_rsa': remote: Counting objects: 1099, done. remote: Compressing objects: 100% (904/904), done. remote: Total 1099 (delta 182), reused 1017 (delta 154) Receiving objects: 100% (1099/1099), 102.99 MiB | 9.25 MiB/s, done. Resolving deltas: 100..
상단 이미지 처럼 Input 박스의 Radio 버튼들을 ASP.Net Core 상에서 처리하는 방법을 정리해 보았다. [ SpoDc.cs ] - DC 관련 기본 테이블 entity 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations.Schema; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ChilgokReserveSystem.Api.Models { [Table("DC")] public class SpoDc {..