사이트는 swj.co.kr 입니다
검색에 규격으로 검색하면 찾아내지못합니다
어떨때는 또 찾아내기도 합니다
아래 소스에 문제가 없을듯한데 어느 부분을 손을 데야 할지 .......도와주세요
..................상단생략.......................
<%
sel_sch = request("sel_sch")
sel_sch2 = request("sel_sch2")
sel_comp_code = request("comp_code")
'이전페이지 , 다음페이지....
'이 부분은 밑에 처리되었다...
'하이퍼링크로 이전페이지 다음페이지 한 부분에 가보면 있다...
session("CurrentPage") = 1
'이 부분은 페이지로 직접 접근하는 부분이다.
If Request.QueryString("GoTopage") <> "" then
session("CurrentPage") = Request.QueryString("GoTopage")
else
end If
If sel_sch2 = "" Then '검색어가 없다면
If sel_sch = "no1" Then '상품명으로 검색한거라면
If sel_comp_code = "" Then '회사코드가없으면
SQL = "select * from product where pr_name like '%" & sel_sch2 & "%' and chulryuk='y' order by pr_code"
else '회사코드도 포함이라면
SQL = "select * from product where pr_name like '%" & sel_sch2 & "%' and chulryuk='y' and pr_comp like '%" & sel_comp_code & "%' order by pr_code"
end if
else '규격코드로 검색한거라면
If sel_comp_code = "" Then '회사코드가없으면
SQL = "select * from product where pr_vol like '%" & sel_sch2 & "%' and chulryuk='y' order by pr_code"
else '회사코드도 포함이라면
SQL = "select * from product where pr_vol like '%" & sel_sch2 & "%' and chulryuk='y' and pr_comp like '%" & sel_comp_code & "%' order by pr_code"
end if
end if
else '정상적인 검색이라면
If sel_sch = "no1" Then '상품명으로 검색한거라면
If sel_comp_code = "" Then '회사코드가없으면
SQL = "select * from product where pr_vol like '%" & sel_sch2 & "%' and chulryuk='y' order by pr_code"
else '회사코드도 포함이라면
SQL = "select * from product where pr_vol like '%" & sel_sch2 & "%' and chulryuk='y' and pr_comp like '%" & sel_comp_code & "%' order by pr_code"
end if
else '규격코드로 검색한거라면
If sel_comp_code = "" Then '회사코드가없으면
SQL = "select * from product where pr_name like '%" & sel_sch2 & "%' and chulryuk='y' order by pr_code"
else '회사코드도 포함이라면
SQL = "select * from product where pr_name like '%" & sel_sch2 & "%' and chulryuk='y' and pr_comp like '%" & sel_comp_code & "%' order by pr_code"
end if
end if
end If
Set Grs = Server.CreateObject("ADODB.Recordset")
Grs.pagesize = 30
Grs.Open SQL,objconn,1
TotCount_search = Grs.RecordCount
if Grs.BOF or Grs.EOF Then
%>
<script language='javascript'>
alert('검색에 부합하는 상품이 없습니다.')
history.back();
</script>
<%
response.end
else
sql_f = "select comp_code,comp_name from company where comp_code = '" & Grs("pr_comp") & "'"
set rs_com_f = objConn.Execute (sql_f)
End if
%>
<tr>
<td width="689" align="left" valign="middle" height="31"> <p style='margin-left:30px; margin-right:5px;'> <font color="#495766"> <%=rs_com_f("comp_name")%> 회사에 대해 검색어 : <b><%=sel_sch2%></b>
(총 <%=TotCount_search%> 개의 항목을 검색했습니다)</font>
</p></td>
</tr>
<tr>
<td width="689" align="center" valign="top">
<table border="0" width="560" align=center cellspacing='0' cellpadding='0'>
<tr>
<td align='center' valign='top'>
<img src='/swshop/images/sub_05.gif' border='0' align='absmiddle'>
</tD>
</tR>
</table>
<!-- 탑 부분 인클루드 종료 -->
<table border="0" width="650" align=center cellspacing='0' cellpadding='0'>
<!-- 제품리스트 시작 -->
<tr>
<td width="689" align="center" valign="top">
<%
if Grs.BOF or Grs.EOF then
%>
<br><br>
검색된 상품이 없습니다.<br>
<br><br>
<%
response.End
else
Grs.absolutepage = session("CurrentPage")
session("pagecount")=Grs.pagecount
%>
.........하단생략...............
검색에 규격으로 검색하면 찾아내지못합니다
어떨때는 또 찾아내기도 합니다
아래 소스에 문제가 없을듯한데 어느 부분을 손을 데야 할지 .......도와주세요
..................상단생략.......................
<%
sel_sch = request("sel_sch")
sel_sch2 = request("sel_sch2")
sel_comp_code = request("comp_code")
'이전페이지 , 다음페이지....
'이 부분은 밑에 처리되었다...
'하이퍼링크로 이전페이지 다음페이지 한 부분에 가보면 있다...
session("CurrentPage") = 1
'이 부분은 페이지로 직접 접근하는 부분이다.
If Request.QueryString("GoTopage") <> "" then
session("CurrentPage") = Request.QueryString("GoTopage")
else
end If
If sel_sch2 = "" Then '검색어가 없다면
If sel_sch = "no1" Then '상품명으로 검색한거라면
If sel_comp_code = "" Then '회사코드가없으면
SQL = "select * from product where pr_name like '%" & sel_sch2 & "%' and chulryuk='y' order by pr_code"
else '회사코드도 포함이라면
SQL = "select * from product where pr_name like '%" & sel_sch2 & "%' and chulryuk='y' and pr_comp like '%" & sel_comp_code & "%' order by pr_code"
end if
else '규격코드로 검색한거라면
If sel_comp_code = "" Then '회사코드가없으면
SQL = "select * from product where pr_vol like '%" & sel_sch2 & "%' and chulryuk='y' order by pr_code"
else '회사코드도 포함이라면
SQL = "select * from product where pr_vol like '%" & sel_sch2 & "%' and chulryuk='y' and pr_comp like '%" & sel_comp_code & "%' order by pr_code"
end if
end if
else '정상적인 검색이라면
If sel_sch = "no1" Then '상품명으로 검색한거라면
If sel_comp_code = "" Then '회사코드가없으면
SQL = "select * from product where pr_vol like '%" & sel_sch2 & "%' and chulryuk='y' order by pr_code"
else '회사코드도 포함이라면
SQL = "select * from product where pr_vol like '%" & sel_sch2 & "%' and chulryuk='y' and pr_comp like '%" & sel_comp_code & "%' order by pr_code"
end if
else '규격코드로 검색한거라면
If sel_comp_code = "" Then '회사코드가없으면
SQL = "select * from product where pr_name like '%" & sel_sch2 & "%' and chulryuk='y' order by pr_code"
else '회사코드도 포함이라면
SQL = "select * from product where pr_name like '%" & sel_sch2 & "%' and chulryuk='y' and pr_comp like '%" & sel_comp_code & "%' order by pr_code"
end if
end if
end If
Set Grs = Server.CreateObject("ADODB.Recordset")
Grs.pagesize = 30
Grs.Open SQL,objconn,1
TotCount_search = Grs.RecordCount
if Grs.BOF or Grs.EOF Then
%>
<script language='javascript'>
alert('검색에 부합하는 상품이 없습니다.')
history.back();
</script>
<%
response.end
else
sql_f = "select comp_code,comp_name from company where comp_code = '" & Grs("pr_comp") & "'"
set rs_com_f = objConn.Execute (sql_f)
End if
%>
<tr>
<td width="689" align="left" valign="middle" height="31"> <p style='margin-left:30px; margin-right:5px;'> <font color="#495766"> <%=rs_com_f("comp_name")%> 회사에 대해 검색어 : <b><%=sel_sch2%></b>
(총 <%=TotCount_search%> 개의 항목을 검색했습니다)</font>
</p></td>
</tr>
<tr>
<td width="689" align="center" valign="top">
<table border="0" width="560" align=center cellspacing='0' cellpadding='0'>
<tr>
<td align='center' valign='top'>
<img src='/swshop/images/sub_05.gif' border='0' align='absmiddle'>
</tD>
</tR>
</table>
<!-- 탑 부분 인클루드 종료 -->
<table border="0" width="650" align=center cellspacing='0' cellpadding='0'>
<!-- 제품리스트 시작 -->
<tr>
<td width="689" align="center" valign="top">
<%
if Grs.BOF or Grs.EOF then
%>
<br><br>
검색된 상품이 없습니다.<br>
<br><br>
<%
response.End
else
Grs.absolutepage = session("CurrentPage")
session("pagecount")=Grs.pagecount
%>
.........하단생략...............
댓글 1개
17년 전
직접 디비에 접속하셔서
query를 실행해 보세요.
query를 실행해 보세요.
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 2030 | 17년 전 | 2790 | ||
| 2029 | 17년 전 | 1598 | ||
| 2028 | 17년 전 | 1346 | ||
| 2027 | 17년 전 | 1607 | ||
| 2026 |
진정한승리
|
17년 전 | 2518 | |
| 2025 | 17년 전 | 1739 | ||
| 2024 | 17년 전 | 2016 | ||
| 2023 | 17년 전 | 1306 | ||
| 2022 |
SE7EN
|
17년 전 | 1042 | |
| 2021 | 17년 전 | 1125 | ||
| 2020 | 17년 전 | 2926 | ||
| 2019 | 17년 전 | 2467 | ||
| 2018 | 17년 전 | 2049 | ||
| 2017 | 17년 전 | 2049 | ||
| 2016 | 17년 전 | 1795 | ||
| 2015 | 17년 전 | 2249 | ||
| 2014 | 17년 전 | 2016 | ||
| 2013 | 17년 전 | 1984 | ||
| 2012 | 17년 전 | 1868 | ||
| 2011 | 17년 전 | 1206 | ||
| 2010 | 17년 전 | 1821 | ||
| 2009 | 17년 전 | 2225 | ||
| 2008 | 17년 전 | 2296 | ||
| 2007 | 17년 전 | 1640 | ||
| 2006 |
Arone
|
17년 전 | 1511 | |
| 2005 |
|
17년 전 | 1357 | |
| 2004 | 17년 전 | 2576 | ||
| 2003 |
suerte
|
17년 전 | 2674 | |
| 2002 |
suerte
|
17년 전 | 2079 | |
| 2001 |
suerte
|
17년 전 | 2418 | |
| 2000 |
|
17년 전 | 2723 | |
| 1999 |
|
17년 전 | 1326 | |
| 1998 |
|
17년 전 | 1189 | |
| 1997 | 17년 전 | 6326 | ||
| 1996 | 17년 전 | 1181 | ||
| 1995 | 17년 전 | 1630 | ||
| 1994 | 17년 전 | 1777 | ||
| 1993 | 17년 전 | 1103 | ||
| 1992 | 17년 전 | 1190 | ||
| 1991 | 17년 전 | 1888 | ||
| 1990 |
sdjsu
|
17년 전 | 1517 | |
| 1989 | 17년 전 | 3614 | ||
| 1988 |
smilesol
|
17년 전 | 1205 | |
| 1987 |
|
17년 전 | 1905 | |
| 1986 | 17년 전 | 1175 | ||
| 1985 | 17년 전 | 1389 | ||
| 1984 | 17년 전 | 2360 | ||
| 1983 | 17년 전 | 2017 | ||
| 1982 | 17년 전 | 1039 | ||
| 1981 | 17년 전 | 1038 | ||
| 1980 | 17년 전 | 1089 | ||
| 1979 |
오렌지76
|
17년 전 | 6043 | |
| 1978 |
오렌지76
|
17년 전 | 5846 | |
| 1977 | 17년 전 | 2034 | ||
| 1976 |
없어씨바라
|
17년 전 | 1029 | |
| 1975 | 17년 전 | 1118 | ||
| 1974 | 17년 전 | 2084 | ||
| 1973 | 17년 전 | 1518 | ||
| 1972 | 17년 전 | 1155 | ||
| 1971 |
smilesol
|
17년 전 | 1190 | |
| 1970 | 17년 전 | 1144 | ||
| 1969 |
smilesol
|
17년 전 | 1064 | |
| 1968 |
소행성블루
|
17년 전 | 3971 | |
| 1967 |
소행성블루
|
17년 전 | 2178 | |
| 1966 | 17년 전 | 1649 | ||
| 1965 |
소행성블루
|
17년 전 | 2777 | |
| 1964 |
고양Ol아빠
|
17년 전 | 1479 | |
| 1963 | 17년 전 | 1165 | ||
| 1962 | 17년 전 | 1183 | ||
| 1961 |
choijinhee
|
17년 전 | 1246 | |
| 1960 | 17년 전 | 1127 | ||
| 1959 | 17년 전 | 1249 | ||
| 1958 |
하이웹솔루션
|
17년 전 | 2405 | |
| 1957 | 17년 전 | 4192 | ||
| 1956 | 17년 전 | 1193 | ||
| 1955 | 17년 전 | 3950 | ||
| 1954 | 17년 전 | 4104 | ||
| 1953 | 17년 전 | 1230 | ||
| 1952 | 17년 전 | 2179 | ||
| 1951 | 17년 전 | 1620 | ||
| 1950 | 17년 전 | 3214 | ||
| 1949 | 17년 전 | 1360 | ||
| 1948 | 17년 전 | 3610 | ||
| 1947 | 17년 전 | 3404 | ||
| 1946 | 17년 전 | 2574 | ||
| 1945 | 17년 전 | 2938 | ||
| 1944 | 17년 전 | 2627 | ||
| 1943 | 17년 전 | 1945 | ||
| 1942 | 17년 전 | 3312 | ||
| 1941 | 17년 전 | 2624 | ||
| 1940 | 17년 전 | 3521 | ||
| 1939 |
|
17년 전 | 1153 | |
| 1938 | 17년 전 | 2246 | ||
| 1937 | 17년 전 | 1320 | ||
| 1936 |
smilesol
|
17년 전 | 1187 | |
| 1935 |
AHEEZII
|
17년 전 | 1057 | |
| 1934 |
smilesol
|
17년 전 | 1042 | |
| 1933 | 17년 전 | 1417 | ||
| 1932 | 17년 전 | 2858 | ||
| 1931 | 17년 전 | 3251 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기