일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- xmldom
- asp함수
- sql업데이트
- MSSQL보안
- array
- inner join
- instr
- 인젝션
- 한글입력체크
- 이미지가로길이
- sql순위
- injection
- javascript 한글입력체크
- join
- SPLIT
- 정규식
- VARIABLE
- 자바기초
- wap
- FileSystemObject
- XML
- WML
- sql랭킹
- tempDB
- jdbc driver
- update
- VarType
- ERD
- JavaScript
- 이미지세로길이
- Today
- Total
3초기억력
asp 자동검색어 - ajax 본문
제목 : asp 자동검색어 - ajax
소스 :
index.asp
----------------------------------------------------------------------------------------------------
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001" %>
<%
Session.CodePage = "65001"
Response.CharSet = "UTF-8"
'ON ERROR RESUME Next
Response.Buffer = true
Response.Expires = -1
%>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="Generator" content="EditPlus®">
<meta name="Author" content="">
<meta name="Keywords" content="">
<meta name="Description" content="">
<title>Document</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.2/jquery.min.js"></script>
</head>
<body>
<p>search text</p>
<input type="text" name="str" id="str" value="" style="width:300px;">
<div id="result" style=" position: absolute;display:none;border:1px silver solid; width:300px; height:200px; overflow:auto;"></div>
<script>
$(function(){
$("#str").keyup(function(){
$('#result').show();
var str = $(this).val();
if(str == ""){
$("#result").html("");
}
if(str.length >= 1){
$.post("search_ajax.asp", {str:str}, function(data){
if(data != ""){
$("#result").html(data);
}
});
}
});
});
</script>
</body>
</html>
search_ajax.asp
-------------------------------------------------------
<%@LANGUAGE="VBSCRIPT" CODEPAGE="65001" %>
<%
Session.CodePage = "65001"
Response.CharSet = "UTF-8"
'ON ERROR RESUME Next
Response.Buffer = true
Response.Expires = -1
%>
<!--#include virtual="/_include/dbconn.asp"-->
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<body>
<%
strWord = Replace(Trim(request("str")), " ", "")
If strWord <> "" Then
sql = "select uid, title from table_goods where replace(rtrim(title), '-', '') like '%"& strWord &"%'"
'Response.write sql
Set rs = db.execute(sql)
If Not(rs.eof Or rs.bof) Then
Do Until rs.eof
Response.write "<a href=""http://demo3.mallshopping.co.kr/goods/content.asp?guid="& rs("uid") &""" target=""_blank"">" & rs("title") & "</a><br>"
rs.movenext
Loop
End If
rs.close
Set rs = Nothing
End If
%>
</body>
</html>
내용 :
예제 소스 파일 :
출처 : 나혼자
'플밍_ASP' 카테고리의 다른 글
Using Classic ASP and URL Rewrite for Dynamic SEO Functionality (0) | 2015.03.18 |
---|---|
ASP SHA256 암호화 (0) | 2015.03.17 |
asp에서 json 파일 호출하여 파싱. 테이블로 보여주기 (0) | 2014.08.05 |
asp - LDAP 사용하여 인증하기 방법 (0) | 2014.06.12 |
ServerXMLHTTP 사용법 + getOption Method (0) | 2014.04.10 |