Case Dependancy Trouble With InStr() And Mid()

I'm having some trouble with an error that is thrown when I use InStr() and Mid() with a database search query. In point form:

I am retrieving an array strings from my database where the query is case insensitive. This is good.

Then I locate the keyword in the string using InStr() which is case sensitive. This is not desireable as it doesn't recognize all instances of the keyword.

I use the Mid() function to give me a portion of the string starting at the location provided by InStr() which is sometimes the number zero which in turn throws the error.

View Replies


ADVERTISEMENT

InSTR Is Case Sensitive

Just used this code and noticed it doesn't always work, turns out InStr is case sensitive.What's thet best way to do a non-case sensitive search?pHP Code:

IF INSTR(VideoName,"HiRes") THEN 

View Replies View Related

Dim Inside Select Case Executes In Any Case?

Code like this
=======================
Select case q
Case "a"
Dim arr(5)
Case "b"
Dim arr(2)
end select
=====================
returns an error saying variable arr redefined.
Should it be like that or an I using Select incorrectly? Perhaps something
similar to break needs to be used?

View Replies View Related

Upper Case And Lower Case

I need to filter the records of a table where the records contain a searchin string with no case sensitive compare, and all with one only sql statement.

"SELECT * FROM Stuff WHERE LOWER(StuffName) LIKE '%" & lcase(StrSearch) & "%'"

but the error is in the function LOWER exist a similar function ?

View Replies View Related

Instr

Why does this code Code:

Dim mytext
mytext = "Tristique, sed tamen typicus amet, bene quia feugait eu. "
Response.Write Instr(mytext, "tamen")

Gives the response "16"? Surely this word only appears once? Is it counting letters? How can I make it identify just words?

View Replies View Related

InStr

How do I use InStr to find the string d="1"

I have tryed:

InStr(text,"d="1"") and it does not work

I have tryed a few other variations and I cant get it to work.

View Replies View Related

Access, Not Instr

I dont want those Disp selected from access db...I am getting an error..How will I do that ?
Microsoft VBScript runtime error '800a000d'

Type mismatch: '[string: "49, 50"]'

/drv_sch/Generate_Sch.asp, line 55
----------------------------------------
Driver_id is a number...Disp variable has these data "49, 50, 51"
SELECT * FROM schedule WHERE not instr('Disp',driver_id)

View Replies View Related

Instr Searches

I am searching a string that look like this (21,5,15,25) using Instr().
So, if I am searching for '5', I get everything that contains a five.

If InStr("21,5,15,25", req,QuerStr("id") Then
response.write "yes"
End If

I want only the one value '5' to get found but anything that contains a 5 is found. I have tried using Cint and Int to no avail.

View Replies View Related

InStr, Substr, Mid

I have a field name "tracks" of string data type that has multiple names in it (for example: calder delaware$ aqueduct ), and I want to check to see if this certain field has "delaware$" in it. InStr or the Mid functions return the numerical order of where that string starts inside the string, but it doesnt tell me if "delaware$" exists in "tracks".

View Replies View Related

Instr() - Meaning

was the instr() in asp means... meaning - why it is used.

View Replies View Related

Reliable Instr() ?

Using MySQL as a DB, I'm generating an OTF SQL statement that looks for matches in a comma delimited string. The code ends up looking something like this: Code:

View Replies View Related

Left And Instr Functions

I am having a problem with the following code:

<%
If Len(TestRS.Fields.Item("Testimonial").value) > 150 Then
Response.Write(Left(TestRS.Fields.Item("Testimonial").Value,150)&""... <br><font size=1><a href=""/Testimonials.asp"">Read More</a></font>")
Else
Response.Write(TestRS.Fields.Item("Testimonial").Value)
End If
%>

I am getting a null response from TestRS.Fields.Item("Tesimonial").Value after it is processed by the Len function.

I am getting the following result: Quote: "... Read More This tells me that the len function is analysing the string to be greater than 150 charachters yet the string is not being expressed.

View Replies View Related

Should I Use LIKE Or InSTR For A Database Search?

Which is better practice?

Code:
Select * From groups Where groupName LIKE '%bli%' AND cusType LIKE 'CUST%'
or

Code:
Select * From groups Where InStr(groupName,'li')>0 AND InStr(cusType,'CUST')=1
Right now I'm using and Access database but plan to upsize to a MSSQL if that makes any difference. Are there any advantages or disadvantages to either technique?

View Replies View Related

Instr Type Function

I've been given a large database of "model numbers". based on these model number I have to do something different. example model numbers:

B2020-SG1
B2020-SG4440
B2020-LG3
B2020-LG33E
B2020-SG1-SG1
B2020-SG1TD9-SG1
B2020-SG1TD15-SG4440

Basically, the first number (B2020, which could be a number of different numbers) is the model. the second and/or third number is what I have to act on. The problem is, how do I pull that third number? Especially if its the same as the first number. right now I'm using Instr(variable1, "SG1") to pull each different set of numebrs. but that only finds the first occurence. what about the 2nd? how can I find that?

View Replies View Related

Instr Function Generates Error

My question is

I use:
-----------------------------
dim strText,pos
strText = "This is a test!!"
pos = Instr(strText,"a",1)
response.write pos
-----------------------------
and i get:

Type mismatch: '[string: "This is a test!!"]'

What's going on?

View Replies View Related

String With Commas, How To Use Instr And Mid Function In A Loop?

I have a string --> 7,8,9,10. This string may contain more or less than 4 numbers.
I want to separate each number and run an sql query for each number.

for example:

select * from table1 where code = '7'

select * from table1 where code ='8'

and etc....

Can I do this in a loop?

View Replies View Related

Invalid Procedure Call Or Argument: 'InStr'

I get this error melding >>>Invalid procedure call or argument: 'InStr' and this is the code where this error refers to:

If (InStr(r, UCase(strRetVal), "<TABLE>") > 0) AND _(InStr(r, UCase(strRetVal), "<TABLE>") < _
InStr(r, UCase(strRetVal), "</TD>")) then ThisCellText = mid(strRetVal, StartCellText, _
InStr(r, UCase(strRetVal),"<TABLE>")- StartCellText )
Else
ThisCellText = mid(strRetVal, StartCellText, _
InStr(r, UCase(strRetVal), "</TD>")- StartCellText )
End If

in this area i am doing something, can anyone plz direct me and tell whats wrong?

View Replies View Related

XML Trouble

I was wondering If there is any way to grab just the viewable text of a webpage
using xml. Not the html, just what the user can see.

View Replies View Related

IIS Trouble

I am having trouble with installing IIS, I tried to do it in my control panel, but it wants the disk, I don't have the disk because my computer came with Windows XP Pro 2002 Service pack 2.

so I went to the microsoft website and downloaded the free download of IIS6. Then when I go to my control panel and Administrative tools it is in there and when I click on it, there is no computer name available.

View Replies View Related

Iframe Trouble

I have a sign-in box that is an IFrame, with a form target of "_top", and
the current (parent) page URL as a hidden field.

If sign-in in successful, there is a response.redirect to the page URL,
having set the session variable LoggedInOK=true.

However, if the sign in is not OK, I want the IFrame to be the target, (i.e.
_self, not _top) to display the error.

Is there a way for ASP to control whether it redirects to _top or _self, as
setting the form target in the Login page requires "pre-knowledge" of
whether it will be successful.

View Replies View Related

Trouble To Migrate To IIS 6

I am moving a ASP website to a new Window 2003 server with
IIS 6, but an error occur for the metadata declaration in
my global.asa

<!--METADATA TYPE="TypeLib" NAME="Microsoft Scripting
Runtime" UUID="{420B2830-E718-11CF-893D-00A0C9054228}"
VERSION="1.0"-->

the error message is

Active Server Pages error 'ASP 0223'

TypeLib Not Found

/LM/W3SVC/1/Root/myweb/global.asa, line 4

METADATA tag contains a Type Library specification that
does not match any Registry entry.

View Replies View Related

Trouble W/ Checkboxes

I'm writing an Online registration system for my friends new business.
I'm trying to incorporate checkboxes so when a person checks on 3 or 4 checkboxes and hits the Submit button I can
pass the information of what they checked_on to a new page.
When I get to the new page I would like to update a database, based on what they checked_on on the previous page.
I'm not sure how to do this.
I'm not sure how to pass the information.

View Replies View Related

Recordset Trouble

Ive got a script here that searches using info from querystrings. it's just a snippet from the other lot. Code:

View Replies View Related

Cpshost.dll Trouble

using PWS on test machine (NT4 workstation SP6) and everything was fine but cpshost.dll was used in the website we're maintaining, so I idiotically installed it from a Visual J++ disc. now the website works fine but when i navigate to 127.0.0.1 nothings happens. I've checked directory browsing is enabled but still nothing happens!

I'm aware that cpshost.dll was never meant to be used on NT workstations but as I said before the upload functionality works fine, it just seems to have screwed the directory browsing up - and also the code document.referrer equals nothing.

View Replies View Related

Trouble With Rss2html.asp

I am primarily a front-end designer and not familiar with ASP beyond
breaking up pages into include files. Recently, one of my freelance
clients wanted to display an RSS feed from his blog on his site. I did
some research and found the rss2html.asp script. I chose this over a
javascript solution because those scripts apparently don't affect
search engine rankings.

I implemented the script and it was running fine until about a month
ago, when the site and sometimes the server running it started to
crash. The ISP and the blog company the RSS feed originates from blame
the script. Bytescout, who wrote the script, says that it's probably
the feed that's causing the problem. The RDF version of the feed
validates as RSS, but the ATOM one has specs that are too new for the
validator to parse correctly. Code:

View Replies View Related

Connection Trouble

I keep having trouble connecting to my database I am running windows xp pro and Access 2000

Error Type:
Provider (0x80004005)
Unspecified error
/test.asp, line 60

It keeps bringing up the above error message sometimes it works fine then other times it dosen't has anyone had any similar problems.

View Replies View Related

Interesting Trouble

i'm working on access db the problem is when i enter date in d/m/y format it wrote db m/d/y format but this happens only with small numbers i.e if date 04/09/2002 it become 09/04/2002 in db but if it is 24/09/2002 there is no problem.

View Replies View Related

Function Trouble

I've narrowed down my error to one particular function. It looks as if the function may not be receiving the variable that is passed to it.

The error message is:

error '80020009'
results.asp, line 21

Line 21 is: Code:

View Replies View Related

ASP XML SelectSingleNode Trouble

I'm having some trouble parsing an XML document I'm getting from my company's bank in response to a XML document I'm sending. Both docs are transferring fine, and in fact if the transaction in the document I send is accepted (valid credit card), everything parses perfectly.

The prob is when the transaction is not accepted by the bank server (invalid credit card), and the document that's returned to me has different tags. Code:

View Replies View Related

Trouble Inserting A New Row Into Database

I am having trouble with someone else's code that worked when it was used last, but now it's not. I am new to ASP programming so I not too sure what's happening. Code:

View Replies View Related

Trouble With Session In Global.asa

I have started session("visitorID") in global.asa in order
to keep track of how many users are on our site at any
given time, trouble is I can't seem to call the session
while on another page.

As I am relatively new to asp I'll post both the setting
of the session and the call to it on the other page below Code:

View Replies View Related

Trouble Passing A URL Through From An Access DB

I am attempting to pull a value from my database and insert it into an ahref tag.

However I keep getting the following error..

Microsoft VBScript runtime error '800a01a8'
Object required: ''

Below is the code I am trying to make work..

<th width="25%" height="34" scope="col"><div align="center"><a href="cat_detail.asp?<%=(rsLastCatalogUrl.Fields.Item("txtCatalogUrl").Value)%>"><img src="../../../images/layout/buttons/button_backtocatalog_off.gif" width="100" height="30" border="0" /></a></div></th>

This is the SQL statement I am executing to pull the field, which is meant to be the last record inserted into the shopping cart by a particular individual. Code:

View Replies View Related

File Uploader Trouble

I am having trouble with my file uploader. I do not program a lot of .asp and its a bit confusing. As well, I just took over the development on this webpage so the code is not my own.

The file uploader worked before but now that I have the webpage put to a test site it doesn't. Would this be a reason why I cannot upload? i am also having trouble accessing the database, which makes it even harder for me to see whats hapening to the file.

When I upload it says that it uploaded successfully but when I see the webpage the photo isn't there. Would you like to see the code for the uploader?

View Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved