- 404에러페이지
- django 엑셀불러오기
- 강제이동
- 바코드 생성하기
- TempData
- ASP.Net Core 404
- 맥 오라클설치
- swagger 500 error
- 하드 마이그레이션
- 말줄임표시
- 타임피커
- javascript 바코드 생성
- asp ftp
- asp.net Select
- asp.net dropdownlist
- ViewBag
- jquery 바코드생성
- XSS방어
- 원격ftp
- asp.net core Select
- 하드 윈도우 복사
- php 캐쉬제거
- JavaScript
- ViewData
- Mac Oracle
- javascript redirection
- asp.net core swagger
- XSS PHP
- simpe ftp
- SSD 복사
목록ASP (42)
웹개발자의 기지개
Input_Type = ReForm2(theform.item("Input_Type"),0,0) url = ReForm2(theform.item("url"),0,0) 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657'SQL injection방지Function ReForm2(sString , nMaxLen , isNum )'// Request 로 들어온 변수를 처리한다.'// sString : 넘겨받는 변수 (string)'// nMaxLen : 최대 길이 (number) (최대길이를 검사하지 않은경우 0)'// isNum : 숫자인지 아닌지 (1 : only num..
asp 코드상으로도 GET, POST 변수값들에게 SQL injection 방지 필터링도 걸수 있지만[ASP] SQL injection 방지 [ASP] SQL injection 방지sql injection 방지 소스이다. injection_filter = "union|delete|select|update|drop table|drop column|alter table|alter column|create |insert|;--|declare|exec|set @|sysadmin|db_name|convert|rtrim|table_cursor|syscolumn|--|having|kill|xp_" injection_filtwonpaper.tistory.com web.config 환경설정 파일로도 보다 시스템적으로 ..
[ 기본 소스 ]12345678910111213141516171819202122232425262728293031323334Option Explicit Dim dir,filename,tbtb = Request.QueryString("tb")filename = Request.QueryString("filename") response.Clearresponse.ContentType = "application/unknown"response.AddHeader "Pragma","no-cache"response.AddHeader "Expires","0"response.AddHeader "Content-Transfer-Encoding","binary"response.AddHeader "Conte..
파일다운로드시 한글파일과 빈칸등으로 다운로드가 잘나되는 경우가 있다. 아래와 같이 간단히 해당 빈칸을 문자열 치환하여 처리하며 간단히 해결이 가능하다. str = Replace(str, " ", "%20") str = Server.UrlEncode(str) ASP, 이외에도 다른 백엔드 언어를 쓸 때도 비슷하게 이를 참고하면 되겠다.
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 Colored by Color Scriptercs
실무 코딩작업하다가 임의로 3초정도 지연시키는 delay 코드를 만들어야 하는 상황이 생겼다. 1 2 3 4 5 6 7 8 function sleep(scs) Dim lo_wsh, ls_cmd Set lo_wsh = CreateObject( "WScript.Shell" ) ls_cmd = "%COMSPEC% /c ping -n " & 1 + scs & " 127.0.0.1>nul" lo_wsh.Run ls_cmd, 0, True End Function sleep(3) Colored by Color Scripter cs 참고 : https://stackoverflow.com/questions/2237393/how-to-delay-a-response-in-classic-asp
asp 소스 상으로 pc 와 모바일을 체킹하는 소스이다. 1 2 3 4 5 6 7 8 9 10 11 12 13 0 Then Response.Redirect("/모바일.asp") else Response.Redirect("/웹.asp") Exit for End If Next %> Colored by Color Scripter cs 참고 : https://m.blog.naver.com/hosicee22/220237901793
