반응형 Developer217 jquery 자동 완성 jquery 를 이용한 자동완성 구현... 자주 써먹어서 정리처리 일단 관련 js와 css 는 http://jqueryui.com/ 여기서 다운로드 하면 되고.. 아래처럼... 상단에 다닥 붙여준다 1. 2. 검색 페이지를 꾸며 준다. 아래는 자동 완성 부분 뿌려줄 div 3. javascript 검색 소스 부분.. json 으로 받아 오는데. . 변수 넘기는 파라미터 이름이 term 이다..... 알아내느라 애먹음.. ㅡ,.ㅡ autoCompleteData.asp?term=검색어 .. .이런헝식으로 넘어간다. // 검색 관련 $(function() { $( "#tags" ).autocomplete({ source: "/common/json/autoCompleteData.asp", select: func.. 2014. 12. 8. sql injection 방지 (GET 방식) 좋은 자료가 있어 기록 남김... 0 Or inStr(lcase(Request(LWItem)), "--") > 0 thenErrParity = 11exit forend if '## select, delete 방지if (inStr(lcase(Request(LWItem)), "select") > 0 or inStr(lcase(Request(LWItem)), "delete") > 0) and inStr(lcase(Request(LWItem)), "from") > 0 thenErrParity = 30exit forend if '## update 방지if inStr(lcase(Request(LWItem)), "update") > 0 and inStr(lcase(Request(LWItem)), "set") > 0 .. 2014. 12. 5. 프로시저 역추적, 테이블분석용... , 프로시저 내부 키워드 검색 , DB 전체를 칼럼명으로 검색 CREATE proc sp_helphh-- 프로시저 내부 키워드 검색용 @keyword1varchar(30) as set nocount on declare @sql varchar(2000)set @sql ='select A.*from sys.sysobjects Ainner join sys.syscomments Bon A.ID = B.IDwhere A.xtype = ''P''and A.CATEGORY = 0AND b.TEXT LIKE ''%'+@keyword1+'%'' order by crdate desc'print @sql exec(@sql) --print @sql set nocount off create proc sp_helphh2-- dB 전체 에서 칼럼명으로 테이블이나 프로시저 검색@keyword1.. 2014. 11. 19. jquery checked check check 박스 컨트롤 ...console.log($("input:checkbox[id='ID']").is(":checked") ); 2014. 10. 13. 이전 1 ··· 31 32 33 34 35 36 37 ··· 55 다음 반응형