- 강제이동
- XSS PHP
- jquery 바코드
- SSD 복사
- asp.net Select
- asp.net core Select
- Mac Oracle
- php 캐쉬제거
- 파일업로드 체크
- 하드 윈도우 복사
- ASP.Net Core 404
- 파일업로드 유효성체크
- 말줄임표시
- javascript 바코드스캔
- django 엑셀불러오기
- ViewData
- asp.net dropdownlist
- jquery 바코드생성
- 하드 마이그레이션
- 타임피커
- 바코드 생성하기
- 맥 오라클설치
- TempData
- 404에러페이지
- javascript 바코드 생성
- ViewBag
- 바코드 스캔하기
- javascript 유효성체크
- XSS방어
- javascript redirection
목록분류 전체보기 (755)
웹개발자의 기지개
SQL 쿼리문에서 Join 문과 같이 관계가 연결되있는 부분을 LINQ 의 Include 와 ThenInclude 를 통하여 불러올수 있는데, 이에 좋은 포스팅 글이 있어서 소개한다. https://entityframeworkcore.com/querying-data-include-theninclude EF Core Include - Learn How to Retrieve Related Objects in LINQ Include The Include method specifies the related objects to include in the query results. It can be used to retrieve some information from the database and also want..
1 2 3 4 5 6 7 8 9 10 F:\vue_exam\vue2>node --version v18.16.1 F:\vue_exam\vue2>npm --version 9.5.1 F:\vue_exam\vue2>npm list F:\vue_exam\vue2 └── (empty) Colored by Color Scripter cs 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 현재 설치된 로컬 상의 패키지 모듈 리스트 명령어 npm list --depth=0 글로벌 스코프로 설치된 패키지 모듈 리스트 명령어 npm list --..
파일 업로드 제한하기 - 확장자로 체킹하기 Function UsableFileExtCheck(FileName) Ext1 = LCase(Mid(FileName, InStrRev(FileName, ".") + 1)) FilterExt = "ad,adprototype,asa,asax,ascx,asmx,asp,aspx,axd,browser,cd,cdx,cer,compiled,config,cs,csproj,dd,exclude,idc,java,jsl,ldb,"&_ "ldd,lddprototype,ldf,licx,master,mdb,mdf,msgx,refresh,rem,resorces,resx,sd,sdm,sdmdocument,shtm,shtml,sitemap,skin,soap,svc,"&_ "vb,vbproj,vj..
응답 헤더부에 Server Microsoft HTTP API2.0 제거하기 보안상 서버의 정보가 가급적 안나오는게 좋다. 레지스트리 값을 수정한다. Open Regedit Navigate to: Computer\HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\HTTP\Parameters If DisableServerHeader doesn't exist, create it (DWORD 32bit) and give it a value of 2. If it does exist, and the value isn't 2, set it to 2. Reboot the server OR restart the HTTP service by calling "net stop ht..
[ web.config ] 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 Colored by Color Scripter cs 태그 부분이 바로 그 부분이다.
[ 작업환경 ] "swiper": "6", "vue": "^3.2.13", "vue-router": "^4.2.4", "webpack": "5.0.0" Swiper (슬라이드 기능) 구현할때 보통의 경우 CDN 방식으로 Javascript 소스상으로 간단히 작업을 할 수 있다. https://swiperjs.com/swiper-api Swiper - The Most Modern Mobile Touch Slider Swiper is the most modern free mobile touch slider with hardware accelerated transitions and amazing native behavior. swiperjs.com 그런데, Vue.js 로 작업하면서 기존의 CDN 방식으로는 ..
C:\Users\wonpa\Desktop\frontend\talkitkr\src\components\main.vue 1:1 error Component name "main" should always be multi-word vue/multi-word-component-names C:\Users\wonpa\Desktop\frontend\talkitkr\src\components\test.vue 1:1 error Component name "test" should always be multi-word vue/multi-word-component-names C:\Users\wonpa\Desktop\frontend\talkitkr\src\router\index.js 3:10 error 'createWebHash..
https://nodejs.org Node.js Node.js® is a JavaScript runtime built on Chrome's V8 JavaScript engine. nodejs.org 1. node.js 설치 https://nodejs.org 에서 안정화 버전 설치한다. node -v 로 확인 : 자동으로 npm 은 같이 깔린다. npm -v 로 확인 Visual Code 를 이용할때 플러그인 설치한다. (1) Vetur - Vue 개발할때 확장 프로그램 (2) Debugger for Chrome (deprecated) (3) Prettier - code formatter 성능향상을 위하여 yarn 도 설치한다. npm install --global yarn 만약 아래처럼 에러발생한다면, ..