사이트는 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를 실행해 보세요.
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 2330 | 16년 전 | 5072 | ||
| 2329 | 16년 전 | 2306 | ||
| 2328 | 16년 전 | 3404 | ||
| 2327 | 16년 전 | 2640 | ||
| 2326 | 16년 전 | 1562 | ||
| 2325 | 16년 전 | 5362 | ||
| 2324 | 16년 전 | 2473 | ||
| 2323 | 16년 전 | 5969 | ||
| 2322 | 16년 전 | 1940 | ||
| 2321 | 16년 전 | 4019 | ||
| 2320 | 16년 전 | 3033 | ||
| 2319 |
|
16년 전 | 2221 | |
| 2318 |
데니크레인
|
16년 전 | 2237 | |
| 2317 | 16년 전 | 4423 | ||
| 2316 | 16년 전 | 3309 | ||
| 2315 | 16년 전 | 2836 | ||
| 2314 | 16년 전 | 2966 | ||
| 2313 | 16년 전 | 2080 | ||
| 2312 | 16년 전 | 1769 | ||
| 2311 | 16년 전 | 1679 | ||
| 2310 | 16년 전 | 1399 | ||
| 2309 | 16년 전 | 1672 | ||
| 2308 | 16년 전 | 1903 | ||
| 2307 | 16년 전 | 1601 | ||
| 2306 |
|
16년 전 | 4853 | |
| 2305 | 16년 전 | 3830 | ||
| 2304 | 16년 전 | 1790 | ||
| 2303 | 16년 전 | 1534 | ||
| 2302 | 16년 전 | 2272 | ||
| 2301 | 16년 전 | 4536 | ||
| 2300 | 16년 전 | 3564 | ||
| 2299 | 16년 전 | 2589 | ||
| 2298 | 16년 전 | 4364 | ||
| 2297 | 16년 전 | 3232 | ||
| 2296 | 16년 전 | 1372 | ||
| 2295 |
|
16년 전 | 1389 | |
| 2294 |
|
16년 전 | 2046 | |
| 2293 | 16년 전 | 1892 | ||
| 2292 | 16년 전 | 2566 | ||
| 2291 | 16년 전 | 2241 | ||
| 2290 | 16년 전 | 1374 | ||
| 2289 | 16년 전 | 4393 | ||
| 2288 | 16년 전 | 1480 | ||
| 2287 | 16년 전 | 1793 | ||
| 2286 | 16년 전 | 2204 | ||
| 2285 |
|
16년 전 | 3849 | |
| 2284 |
|
16년 전 | 2739 | |
| 2283 |
|
16년 전 | 1496 | |
| 2282 | 16년 전 | 4028 | ||
| 2281 |
|
16년 전 | 1404 | |
| 2280 | 16년 전 | 1592 | ||
| 2279 | 16년 전 | 1251 | ||
| 2278 | 16년 전 | 1714 | ||
| 2277 | 16년 전 | 1619 | ||
| 2276 | 16년 전 | 1628 | ||
| 2275 | 16년 전 | 1427 | ||
| 2274 | 16년 전 | 2187 | ||
| 2273 | 16년 전 | 1839 | ||
| 2272 |
|
16년 전 | 1985 | |
| 2271 | 16년 전 | 2197 | ||
| 2270 |
a1system
|
16년 전 | 1487 | |
| 2269 | 16년 전 | 2318 | ||
| 2268 | 16년 전 | 2262 | ||
| 2267 | 16년 전 | 4543 | ||
| 2266 |
|
16년 전 | 1299 | |
| 2265 | 16년 전 | 1054 | ||
| 2264 |
잠자리똥꾸멍
|
16년 전 | 2013 | |
| 2263 |
태양의서쪽
|
16년 전 | 1981 | |
| 2262 |
태양의서쪽
|
16년 전 | 1522 | |
| 2261 |
태양의서쪽
|
16년 전 | 2046 | |
| 2260 |
|
16년 전 | 2279 | |
| 2259 | 16년 전 | 1390 | ||
| 2258 | 16년 전 | 1739 | ||
| 2257 | 16년 전 | 1922 | ||
| 2256 | 16년 전 | 1015 | ||
| 2255 | 16년 전 | 1691 | ||
| 2254 | 16년 전 | 1408 | ||
| 2253 | 16년 전 | 1923 | ||
| 2252 |
freedays
|
16년 전 | 1329 | |
| 2251 | 16년 전 | 2203 | ||
| 2250 | 16년 전 | 1882 | ||
| 2249 | 16년 전 | 5873 | ||
| 2248 | 16년 전 | 1913 | ||
| 2247 | 16년 전 | 3686 | ||
| 2246 | 16년 전 | 1468 | ||
| 2245 |
|
16년 전 | 1762 | |
| 2244 |
|
16년 전 | 2077 | |
| 2243 | 16년 전 | 2613 | ||
| 2242 | 16년 전 | 2311 | ||
| 2241 | 16년 전 | 2760 | ||
| 2240 | 16년 전 | 2999 | ||
| 2239 | 16년 전 | 3030 | ||
| 2238 |
|
16년 전 | 1828 | |
| 2237 |
|
16년 전 | 1542 | |
| 2236 |
|
16년 전 | 1419 | |
| 2235 | 16년 전 | 1727 | ||
| 2234 | 16년 전 | 1211 | ||
| 2233 | 16년 전 | 1962 | ||
| 2232 |
|
16년 전 | 1736 | |
| 2231 | 16년 전 | 1610 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기