Groups | Blog | Home
all groups > inetserver asp general > november 2003 >

inetserver asp general : ASP Search problem


Bob Barrows
11/15/2003 8:14:38 AM
Already answered over in .db

Please do not multipost Lee. This is definitely a database-related
question so .asp.db was the perfect group in which to post it. Posting it
here as well did not increase your chances of getting an answer (most of us
subscribe to both groups). On the contrary, if somebody had taken his time
to answer it here, only to find that it was already resolved in the other
group, that person may have been annoyed enough to ignore any future posts
from you, thereby decreasing your chances of getting help in the future.

There are times when you will not be sure which group is most appropriate
(again, this was not one of them), and you will want to post a question to
both groups. In that situation, you should use the cross-posting technique,
rather than posting multiple postings of the same message. To crosspost, put
a semicolon-delimited list of the newsgroups to which you wish to post in
the To: header of your post and post it once. It, and any replies to it,
will appear in all the newsgroups in your list. So, if I reply in .asp.db,
my reply will also appear here in .asp.general.

Bob Barrows
--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"

Lee Mundie
11/15/2003 9:14:37 AM
Hi, wonder if anyone can help me with this - This was originally a simple
search routine returning results back to itself!
Trying to be smart I tried to combine a no. items per page so I could
limited items displayed...

Okay problem! everything seems to be okay except it is returning no results,
when I know it should
the SQL string appears to be okay and if I remove the search criteria
handlers then it kinda works but still not right!

Can anyone tell me where the problem is - would be greatly appreciated.

Thanks in advance

Lee

<%

if Request.QueryString("order") = "" then
StrOrder = "p.prodCode"
Else
StrOrder = Request.QueryString("order")
End if
Const adOpenKeyset = 1
Const adLockReadOnly = 1

set conn = server.createobject("ADODB.Connection")
set rs = server.createobject("ADODB.Recordset")

conn.open "TTMYDB"

Function FormatStr(String)
on Error resume next
String = Replace(String, CHR(13), "")
String = Replace(String, CHR(10) & CHR(10), "</P><P>")
String = Replace(String, CHR(10), "<BR>")
FormatStr = String
End Function

If Request.QueryString("mode") = "doit" then
keywords = split(Request.Form("search"), " ")
boolthing = true
sql = "select distinct p.prodCode, p.prodName, p.productDesc, c.catalogName,
p.productPrice, c.catalogID from products p, catalogs c where
p.catalogID=c.catalogID order by " & StrOrder

for each word in keywords
if boolthing then
boolthing=false
sql = sql & "and ("
else
sql = sql & "or"
end if

sql = sql & " p.prodName like '%" & word & "%' "
sql = sql & "or p.productDesc like '%" & word & "%' "
sql = sql & "or p.prodCode like '%" & word & "%' "
sql = sql & "or c.catalogName like '%" & word & "%' "

next
sql = sql & ")"

Response.Write Sql
rs.open sql, conn, adOpenKeyset, adLockReadOnly

if rs.EOF or rs.BOF then
Response.Write "No Members Found"
Else
TotalRows = rs.RecordCount
rs.PageSize = 2
PageSize = rs.PageSize
TotalPages=RS.PageCount

select case Request("move")
case "first" pageNo = 1 ' First
case "prev" pageNo = cint(Session("page_num")) - 1 ' Next
case "next" pageNo = cint(Session("page_num")) + 1 ' Previous
case "last" pageNo = TotalPages ' Last
case Else PageNo = 1
End Select

if cint(PageNo) < 1 then PageNo = 1
if cint(PageNo) > TotalPages then pageNo = TotalPages

RS.AbsolutePage = PageNo
PageNumber=PageNo
Session("page_num") = PageNo
Response.Write "<td>"

HowMany = 0
Do until rs.EOF or HowMany => PageSize

Response.Write "<h1>Item: <a href='productresult.asp?strprodCode='" &
rs("prodCode") & "'>"
Response.Write "<b>" & rs("prodCode") & " - " & rs("prodName") & "</a></b>"
Response.Write
"<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;This product is
&pound;"
Response.Write ""


rs.MoveNext
howmany = howmany + 1
loop
Response.Write " "
End if

%></td>
<% end if %>

Bob Barrows
11/15/2003 10:57:49 AM
[quoted text, click to view]

OK, I'll amend that. Any suggestions?


--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"

Bob Barrows
11/15/2003 11:18:02 AM
[quoted text, click to view]

So I'll just add a footnote that one should use whatever delimiter is
recognized by the news client.

Bob

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"

Bob Barrows
11/15/2003 12:36:39 PM
[quoted text, click to view]

Well, maybe I'm smart enough to concede when I know I'm beaten. :-)

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"

Evertjan.
11/15/2003 3:10:47 PM
Bob Barrows wrote on 15 nov 2003 in
microsoft.public.inetserver.asp.general:
[quoted text, click to view]

"semicolon-delimited": this depends on the usenet-client used.

--
Evertjan.
The Netherlands.
Evertjan.
11/15/2003 4:12:52 PM
Bob Barrows wrote on 15 nov 2003 in
microsoft.public.inetserver.asp.general:
[quoted text, click to view]

Unless we go OT and set up a list of those clients with their individual
peculiarities, no.

But I will fight anyone that assumes M$-outlook as the implicit standard.

--
Evertjan.
The Netherlands.
Evertjan.
11/15/2003 4:29:45 PM
Bob Barrows wrote on 15 nov 2003 in
microsoft.public.inetserver.asp.general:

[quoted text, click to view]

Cann't fight you, you are too smart.

--
Evertjan.
The Netherlands.
Aaron Bertrand [MVP]
11/16/2003 12:19:48 AM
[quoted text, click to view]
standard.

I'll bite. MS-Outlook does not have a newsreader. Perhaps you meant
Outlook Express.

A

Ray at <%=sLocation%
11/16/2003 12:29:12 AM
msimn.exe /outnews = "Microsoft Outlook Newsreader"

Not that it's a different application, or anything...

Ray at home

[quoted text, click to view]

Aaron Bertrand [MVP]
11/16/2003 12:53:22 AM
[quoted text, click to view]

msimn.exe is the program name for Outlook Express. The label you mention
above is a misnomer. Outlook is a part of Office, has its own executable
with the filename outlook.exe, and certainly contains no newsreader
functionality whatsoever.

I find it amusing when people spend so much time in here -- obviously they
are using the technology -- yet display their maturity and respect by using
stupid acronyms like "M$"... like their own software companies wouldn't be
interested in making money, or something. It's funny, too, that we talk
about Sybase and MySQL and plenty of other companies with "s" in their
names, who certainly make money from their sotware, and we don't stick a
dollar sign in their names.

Ray at <%=sLocation%
11/16/2003 2:00:45 AM

[quoted text, click to view]

I'm completely aware of all that.

[quoted text, click to view]

No, that's not true. If you're in an Exchange environment, you can setup
newsfeed in Exchange and use Outlook as your news client.


[quoted text, click to view]

I 100% agree. People who use "M$" are idiots who don't get anything.

Ray at home

Evertjan.
11/16/2003 11:32:58 AM
Aaron Bertrand [MVP] wrote on 16 nov 2003 in
microsoft.public.inetserver.asp.general:

[quoted text, click to view]

You all see the problem of implicitism. Next time I will add express
explicitly.

Anyway it is strange you all are quiveling about that and about the quite
common abbrevation "M$", while not commenting on the bad implicit way
advises are implicidly given assuming the implicid use of an implicid M$
product.

--
Evertjan.
The Netherlands.
Chris Barber
11/16/2003 11:40:13 AM
I didn't even realise I was being branded an idiot by occasionally using the
term 'M$' as a common acronym for Microsoft - is this the general consensus
cos I don't feel more stupid than yesterday.

LoL (maybe).

Chris.


[quoted text, click to view]

I'm completely aware of all that.

[quoted text, click to view]

No, that's not true. If you're in an Exchange environment, you can setup
newsfeed in Exchange and use Outlook as your news client.


[quoted text, click to view]

I 100% agree. People who use "M$" are idiots who don't get anything.

Ray at home


Ray at <%=sLocation%
11/16/2003 3:47:31 PM
Best not carry on this thread.

Ray at home

[quoted text, click to view]

AddThis Social Bookmark Button