일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 이미지가로길이
- join
- jdbc driver
- 한글입력체크
- FileSystemObject
- tempDB
- sql업데이트
- 정규식
- array
- VarType
- wap
- sql순위
- xmldom
- inner join
- ERD
- JavaScript
- MSSQL보안
- instr
- 인젝션
- WML
- VARIABLE
- javascript 한글입력체크
- 이미지세로길이
- update
- SPLIT
- 자바기초
- asp함수
- sql랭킹
- XML
- injection
- Today
- Total
목록분류 전체보기 (384)
3초기억력
제목 : ms-sql 랜덤숫자. 1~999까지 사이의 랜덤 추출 소스 : DECLARE @Random INT; DECLARE @Upper INT; DECLARE @Lower INT ---- This will create a random number between 1 and 999 SET @Lower = 1 ---- The lowest random number SET @Upper = 999 ---- The highest random number SELECT @Random = ROUND(((@Upper - @Lower +1) * RAND() + @Lower), 0) --> @Lower 다음에 +1로 변경해야 999까지 나옵니다. SELECT @Random 내용 : 1~999 중 1개 숫자가 랜덤으로 조회된다..
제목 : 축약 URL, 단축 URL 생성 ASP function 소스 : Function getShortUrlBitly(ByVal longUrl, ByRef resultCode, ByRef resultTxt)Dim RsDim sql Dim objRoot Dim requestUrl : requestUrl = "http://api.bit.ly/v3/shorten"Dim username, apiKeyDim params Dim result : result = longUrl resultCode = "900"resultTxt = "" username = "" : apiKey = "" '//값을 넣어야함. If username "" And apiKey "" ThenSet objRoot = xmlDoc(xmlHttpS..
제목 : safari ajax scroll Error 대처법 소스 : //더보기var i = 2;var tf = true; function receiveMessage(){ $.ajax({url : "/m/common/exec_getMainGoodsList.asp",data : "page=" + i + "&cate=&listtype=",error : function(html, status){//alert(html+'오류입니다.');},success : function(html, status){i += 1;if (html == 'no_data'){//alert('더이상 상품이 존재하지않습니다.');} else {var $items = $(html); $items.imagesLoaded().then(funct..
제목 : jquery ajax 후 이미지 로딩이 완료된 후 append 할수 있는 함수 소스 : // Fn to allow an event to fire after all images are loaded$.fn.imagesLoaded = function () { // Edit: in strict mode, the var keyword is needed var $imgs = this.find('img[src!=""]'); // if there's no images, just return an already resolved promise if (!$imgs.length) {return $.Deferred().resolve().promise();} // for each image, add a deferred ..
제목 : ms-sql - SQL Server 에이전트(Agent XPs) 실행이 안될시 쿼리문 소스 : use master; 1단계EXEC SP_CONFIGURE 'Agent XPs' 2단계EXEC SP_CONFIGURE 'show advanced options',1 3단계RECONFIGURE 4단계EXEC SP_CONFIGURE 'show advanced options' 5단계EXEC SP_CONFIGURE 'Agent XPs',1 6단계RECONFIGURE 내용 : 예제 소스 파일 : 출처 : https://www.mssqltips.com/sqlservertip/2729/how-to-start-sql-server-agent-when-agent-xps-show-disabled/
제목 : jquery 스마트폰 회전시 제어하는 구문 소스 : function FNareaRelationListCount(){ var areaRelationL = $('#areaRelationList li').length var areaRelationMaxh = $("#areaRelationList").height(); var areaRelationN = $("#areaRelationList li").filter(function () { return $(this).position().top + $(this).height() areaRelationN) { $('#areaRelationBtn').attr('style',..
제목 : 반응형 테이블 2번째 - table reflow 소스 : @media ( min-width: 40em ) { /* Show the table header rows and set all cells to display: table-cell */ .my-custom-breakpoint td, .my-custom-breakpoint th, .my-custom-breakpoint tbody th, .my-custom-breakpoint tbody td, .my-custom-breakpoint thead td, .my-custom-breakpoint thead th { display: table-cell; margin: 0; } /* Hide the labels in each cell */ .my-cust..
제목 : 메모장(카드) 같은 솔루션 할일 / 게시글 / 사진 / 공유 등을 자유자재로 메모장 처럼 사용하는 곳할일 중에서 check 하면 자동으로 몇% 진행되었는가도 보여줌. 다양한 작업이 가능할 듯. 소스 : 내용 : 예제 소스 파일 : 출처 : https://trello.com/b/nPNSBZjB/trello-resources