If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

 
Go Back  dBforums > Data Access, Manipulation & Batch Languages > ASP > URLEncode Error with Search Page on 2003 Server

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 12-22-04, 13:27
youngop youngop is offline
Registered User
 
Join Date: Oct 2004
Posts: 4
URLEncode Error with Search Page on 2003 Server

I noticed recently that my search page on a Windows 2003 server comes back with some URLEncode errors when running a search of the catalog.

More specifically here is the error.

Microsoft VBScript runtime error '800a000d'

Type mismatch: 'URLEncode'

/cs/query.asp, line 347


Here is the code it is refrencing

Code:
<%
    ' Construct the URL for hit highlighting
			WebHitsQuery = "CiWebHitsFile=" & Server.URLEncode( RS("vpath") )
			WebHitsQuery = WebHitsQuery & "&CiRestriction=" & Server.URLEncode( Q.Query )
			WebHitsQuery = WebHitsQuery & "&CiBeginHilite=" & Server.URLEncode( "<strong class=Hit>" )
			WebHitsQuery = WebHitsQuery & "&CiEndHilite=" & Server.URLEncode( "</strong>" )
			WebHitsQuery = WebHitsQuery & "&CiUserParam3=" & QueryForm
'	        WebHitsQuery = WebHitsQuery & "&CiLocale=" & Q.LocaleID
 %>
If I type in 04-080 in the search criteria one server (windows 2000) returns the results while the other (2003) returns a VBscript error URL Encode.

Are there some differences between a 2000 server and 2003 server I need to know about?

Thanks

James Williams
Reply With Quote
  #2 (permalink)  
Old 12-29-04, 18:49
Bullschmidt Bullschmidt is offline
Guru
 
Join Date: Jun 2003
Location: USA
Posts: 1,032
Don't know if this helps at all but at first glance I would think that Server.URLEncode() doesn't understand what Q.Query is.
__________________
J. Paul Schmidt, Freelance Web and Database Developer
www.Bullschmidt.com
Access Database Sample, Web Database Sample, ASP Design Tips
Reply With Quote
Reply

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On