- asp.net core Select
- 파일업로드 유효성체크
- 404에러페이지
- php 캐쉬제거
- 말줄임표시
- XSS PHP
- jquery 바코드
- javascript 유효성체크
- 바코드 생성하기
- SSD 복사
- 파일업로드 체크
- asp.net dropdownlist
- javascript 바코드 생성
- django 엑셀불러오기
- 하드 윈도우 복사
- 맥 오라클설치
- 하드 마이그레이션
- javascript redirection
- ViewData
- 바코드 스캔하기
- 타임피커
- javascript 바코드스캔
- jquery 바코드생성
- XSS방어
- asp.net Select
- ASP.Net Core 404
- Mac Oracle
- 강제이동
- ViewBag
- TempData
목록ASP (39)
웹개발자의 기지개
파일다운로드시 한글파일과 빈칸등으로 다운로드가 잘나되는 경우가 있다. 아래와 같이 간단히 해당 빈칸을 문자열 치환하여 처리하며 간단히 해결이 가능하다. 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
classic ASP 코딩시 자주 사용되는 connection.asp 파일 소스를 정리해보았다. 물론 아주 먼 옛날에는 EUC-KR 이었지만 현재는 모든게 UTF-8 이다. 1 2 3 4 5 6 7 8 9 10 11 12 Colored by Color Scripter cs
tmpStr = "Hello World" response.write tmpStr & " " response.write "instr(msg,""o""): " & instr(msg,"o") & " " '앞에서 1부터 시작해서 o를 찾은 결과 : 5 response.write "instr(msg,""o""): " & instrrev(msg,"o") & " " '뒤에서 1부터 시작해서 o를 찾은 결과 : 8 참고 : https://h5bak.tistory.com/28 ASP 특정문자가 포함된 문자열 찾기(instr, instrrev) tmpStr = "Hello World"response.write tmpStr & " "response.write "instr(msg,""o""):" & instr(msg,"o")..
script_name = Request.ServerVariables("SCRIPT_NAME") script_nameArr = Split(script_name,"/") thisPageStr = script_nameArr(3) ' /front/products/o_lcd_main2.asp thisPageStr 은 o_lcd_main2.asp 값이다. thisFileStr = request.servervariables("PATH_INFO") thisFileArr = Split(thisFileStr,"/") /html/product/galileo.asp 현재파일명은 thisFileArr(3)