사이트는 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를 실행해 보세요.
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 1430 | 18년 전 | 2992 | ||
| 1429 | 18년 전 | 2938 | ||
| 1428 | 18년 전 | 2831 | ||
| 1427 | 18년 전 | 2137 | ||
| 1426 |
|
18년 전 | 2318 | |
| 1425 |
|
18년 전 | 2872 | |
| 1424 |
|
18년 전 | 2968 | |
| 1423 |
frotone
|
18년 전 | 4143 | |
| 1422 | 18년 전 | 6131 | ||
| 1421 | 18년 전 | 2060 | ||
| 1420 | 18년 전 | 2189 | ||
| 1419 | 18년 전 | 1897 | ||
| 1418 | 18년 전 | 1655 | ||
| 1417 | 18년 전 | 2641 | ||
| 1416 | 18년 전 | 1708 | ||
| 1415 | 18년 전 | 1570 | ||
| 1414 | 18년 전 | 4744 | ||
| 1413 | 18년 전 | 1801 | ||
| 1412 | 18년 전 | 1846 | ||
| 1411 | 18년 전 | 1857 | ||
| 1410 | 18년 전 | 1982 | ||
| 1409 | 18년 전 | 3634 | ||
| 1408 | 18년 전 | 1660 | ||
| 1407 | 18년 전 | 1535 | ||
| 1406 | 18년 전 | 1359 | ||
| 1405 | 18년 전 | 1863 | ||
| 1404 | 18년 전 | 1912 | ||
| 1403 |
frotone
|
18년 전 | 3661 | |
| 1402 | 18년 전 | 1980 | ||
| 1401 | 18년 전 | 3119 | ||
| 1400 | 18년 전 | 4743 | ||
| 1399 | 18년 전 | 2869 | ||
| 1398 | 18년 전 | 8070 | ||
| 1397 | 18년 전 | 4069 | ||
| 1396 |
|
18년 전 | 2752 | |
| 1395 | 18년 전 | 1534 | ||
| 1394 | 18년 전 | 2632 | ||
| 1393 | 18년 전 | 5043 | ||
| 1392 | 18년 전 | 5231 | ||
| 1391 |
cncafe
|
18년 전 | 2107 | |
| 1390 |
mixdesign
|
18년 전 | 4357 | |
| 1389 | 18년 전 | 4106 | ||
| 1388 |
mixdesign
|
18년 전 | 4162 | |
| 1387 | 18년 전 | 2283 | ||
| 1386 | 18년 전 | 4192 | ||
| 1385 |
mixdesign
|
18년 전 | 2188 | |
| 1384 | 18년 전 | 3295 | ||
| 1383 | 18년 전 | 4930 | ||
| 1382 | 18년 전 | 1956 | ||
| 1381 |
오디세우스
|
18년 전 | 3419 | |
| 1380 |
mixdesign
|
18년 전 | 1656 | |
| 1379 | 18년 전 | 2753 | ||
| 1378 |
mixdesign
|
18년 전 | 1685 | |
| 1377 | 18년 전 | 2737 | ||
| 1376 |
|
18년 전 | 2561 | |
| 1375 |
|
18년 전 | 1571 | |
| 1374 |
|
18년 전 | 1511 | |
| 1373 |
|
18년 전 | 1755 | |
| 1372 | 18년 전 | 2248 | ||
| 1371 | 18년 전 | 2025 | ||
| 1370 | 18년 전 | 2393 | ||
| 1369 | 18년 전 | 4949 | ||
| 1368 |
mixdesign
|
18년 전 | 1828 | |
| 1367 | 18년 전 | 1271 | ||
| 1366 | 18년 전 | 1385 | ||
| 1365 | 18년 전 | 1346 | ||
| 1364 | 18년 전 | 1100 | ||
| 1363 | 18년 전 | 1089 | ||
| 1362 | 18년 전 | 1420 | ||
| 1361 | 18년 전 | 1381 | ||
| 1360 | 18년 전 | 2358 | ||
| 1359 | 18년 전 | 1235 | ||
| 1358 | 18년 전 | 1620 | ||
| 1357 | 18년 전 | 2110 | ||
| 1356 | 18년 전 | 1293 | ||
| 1355 | 18년 전 | 2845 | ||
| 1354 | 18년 전 | 1286 | ||
| 1353 | 18년 전 | 1664 | ||
| 1352 | 18년 전 | 1508 | ||
| 1351 | 18년 전 | 1467 | ||
| 1350 | 18년 전 | 1259 | ||
| 1349 | 18년 전 | 1088 | ||
| 1348 | 18년 전 | 1678 | ||
| 1347 | 18년 전 | 1124 | ||
| 1346 | 18년 전 | 3630 | ||
| 1345 | 18년 전 | 1721 | ||
| 1344 |
mixdesign
|
18년 전 | 1800 | |
| 1343 | 18년 전 | 1130 | ||
| 1342 | 18년 전 | 1855 | ||
| 1341 | 18년 전 | 1100 | ||
| 1340 | 18년 전 | 1169 | ||
| 1339 | 18년 전 | 1021 | ||
| 1338 | 18년 전 | 1018 | ||
| 1337 | 18년 전 | 1115 | ||
| 1336 |
|
18년 전 | 2591 | |
| 1335 | 18년 전 | 1547 | ||
| 1334 | 18년 전 | 1641 | ||
| 1333 | 18년 전 | 1205 | ||
| 1332 | 18년 전 | 1875 | ||
| 1331 | 18년 전 | 1524 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기