|
|
|
|
|
|
| |
|
<%
name=Request.QueryString("name")
if not trim(name)="" then
set prodrs=server.createobject("adodb.recordset")
strsql="select distinct * from product_mast where prod_name like '%"&trim(name)&"%' or prod_introduction like '%"&trim(name)&"%' or prod_feature like '%"&trim(name)&"%'"
prodrs.Open strsql,conn1,3,3
a=1
if prodrs.RecordCount > 0 then
prodrs.MoveFirst
%>
")
else
Response.Write("Sorry no record found")
end if
prodrs.Close
conn1.Close
else
Response.Write("Sorry no record found")
end if
%>
|
|
|
|
|
| |
|