사이트는 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를 실행해 보세요.
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 2530 |
|
15년 전 | 2625 | |
| 2529 |
|
15년 전 | 1337 | |
| 2528 | 15년 전 | 1051 | ||
| 2527 | 15년 전 | 1514 | ||
| 2526 | 15년 전 | 912 | ||
| 2525 | 15년 전 | 1208 | ||
| 2524 | 15년 전 | 1101 | ||
| 2523 | 15년 전 | 1501 | ||
| 2522 |
NY더지더지
|
15년 전 | 1636 | |
| 2521 | 15년 전 | 909 | ||
| 2520 |
|
15년 전 | 1315 | |
| 2519 |
|
15년 전 | 1107 | |
| 2518 | 15년 전 | 939 | ||
| 2517 |
|
15년 전 | 1014 | |
| 2516 | 15년 전 | 1328 | ||
| 2515 | 15년 전 | 773 | ||
| 2514 | 15년 전 | 953 | ||
| 2513 | 15년 전 | 2609 | ||
| 2512 |
|
15년 전 | 1422 | |
| 2511 |
|
15년 전 | 794 | |
| 2510 |
|
15년 전 | 826 | |
| 2509 | 15년 전 | 1270 | ||
| 2508 | 15년 전 | 1306 | ||
| 2507 | 15년 전 | 1556 | ||
| 2506 | 15년 전 | 1039 | ||
| 2505 | 15년 전 | 1402 | ||
| 2504 |
JMoon
|
15년 전 | 697 | |
| 2503 |
|
15년 전 | 1049 | |
| 2502 | 15년 전 | 1311 | ||
| 2501 | 15년 전 | 2727 | ||
| 2500 | 15년 전 | 1088 | ||
| 2499 | 15년 전 | 1059 | ||
| 2498 | 15년 전 | 964 | ||
| 2497 |
첫만남의감격
|
15년 전 | 835 | |
| 2496 |
|
15년 전 | 842 | |
| 2495 |
|
15년 전 | 3440 | |
| 2494 |
soulfuleyes
|
15년 전 | 2812 | |
| 2493 | 15년 전 | 1993 | ||
| 2492 | 15년 전 | 2440 | ||
| 2491 | 15년 전 | 1530 | ||
| 2490 | 15년 전 | 1079 | ||
| 2489 | 15년 전 | 1069 | ||
| 2488 | 15년 전 | 2343 | ||
| 2487 | 15년 전 | 891 | ||
| 2486 | 15년 전 | 1935 | ||
| 2485 |
못말리는크리스
|
15년 전 | 741 | |
| 2484 |
|
15년 전 | 1885 | |
| 2483 | 15년 전 | 821 | ||
| 2482 | 15년 전 | 2492 | ||
| 2481 | 15년 전 | 742 | ||
| 2480 | 15년 전 | 1168 | ||
| 2479 | 15년 전 | 721 | ||
| 2478 |
|
15년 전 | 2886 | |
| 2477 | 15년 전 | 1265 | ||
| 2476 | 15년 전 | 1294 | ||
| 2475 | 15년 전 | 1305 | ||
| 2474 | 15년 전 | 1368 | ||
| 2473 | 15년 전 | 980 | ||
| 2472 | 15년 전 | 1740 | ||
| 2471 | 15년 전 | 1268 | ||
| 2470 | 15년 전 | 852 | ||
| 2469 | 15년 전 | 2708 | ||
| 2468 | 15년 전 | 1097 | ||
| 2467 | 15년 전 | 1298 | ||
| 2466 | 15년 전 | 1099 | ||
| 2465 | 15년 전 | 1955 | ||
| 2464 | 15년 전 | 1971 | ||
| 2463 | 15년 전 | 1637 | ||
| 2462 | 15년 전 | 990 | ||
| 2461 | 15년 전 | 1223 | ||
| 2460 | 15년 전 | 918 | ||
| 2459 | 15년 전 | 859 | ||
| 2458 | 15년 전 | 1102 | ||
| 2457 | 15년 전 | 2463 | ||
| 2456 | 15년 전 | 2482 | ||
| 2455 | 15년 전 | 1461 | ||
| 2454 | 15년 전 | 1001 | ||
| 2453 | 15년 전 | 1156 | ||
| 2452 | 15년 전 | 1161 | ||
| 2451 | 15년 전 | 1028 | ||
| 2450 | 15년 전 | 931 | ||
| 2449 | 15년 전 | 858 | ||
| 2448 | 15년 전 | 1215 | ||
| 2447 | 15년 전 | 1170 | ||
| 2446 | 15년 전 | 914 | ||
| 2445 | 15년 전 | 888 | ||
| 2444 | 15년 전 | 1063 | ||
| 2443 | 15년 전 | 1535 | ||
| 2442 | 15년 전 | 1067 | ||
| 2441 | 15년 전 | 1390 | ||
| 2440 |
|
15년 전 | 1232 | |
| 2439 | 15년 전 | 1900 | ||
| 2438 |
|
15년 전 | 2962 | |
| 2437 |
|
15년 전 | 2292 | |
| 2436 |
|
15년 전 | 889 | |
| 2435 |
|
15년 전 | 1902 | |
| 2434 |
|
15년 전 | 2085 | |
| 2433 |
|
15년 전 | 1391 | |
| 2432 | 15년 전 | 1368 | ||
| 2431 | 15년 전 | 2632 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기