Not A Case Sensitive Search?
Below is my sql search code in my asp page. But my search seems to be case sensitive. How can i modify it to make it not case sensitive?
<%
sqlString = "SELECT product_image, product_name, product_description, product_price " &_
"FROM Products " &_
"WHERE product_status = 1 " &_
"AND ( product_name LIKE '%" & searchFor & "%' " &_
"OR product_description LIKE '%" & searchFor & "%') " &_
"ORDER BY product_name "
SET RS = Conn.Execute( sqlString )
IF NOT RS.EOF AND searchFor <> "" THEN
%>
View Replies
ADVERTISEMENT
Below is my sql search code in my asp page. But my search seems to be case sensitive. How can i modify it to make it not case sensitive?
<%
sqlString = "SELECT product_image, product_name, product_description, product_price " &_
"FROM Products " &_
"WHERE product_status = 1 " &_
"AND ( product_name LIKE '%" & searchFor & "%' " &_
"OR product_description LIKE '%" & searchFor & "%') " &_
"ORDER BY product_name "
SET RS = Conn.Execute( sqlString )
IF NOT RS.EOF AND searchFor <> "" THEN
%>
View Replies
View Related
I have some stored values in a DB. When I search for a username I don't want to retrieve anything unless all characters match exactly. Assume a user has chosen "HeLLo" for username. Then I don't want the SQL string to store that name in the recordset when names like "hello" or "Hello" is searched.
The way my code works now, it doesn't pay any attention to whether it is lower or upper case. How can I search a DB and only store the values in the recordset if all cases match?
View Replies
View Related
i have this on my signup page
Set rs = Conn.Execute("SELECT * from rounds")
DO WHILE NOT rs.EOF
IF request.form("username") = rs.fields.item("username").value THEN
response.redirect("register2.asp")
END IF
rs.MoveNext
LOOP
the problem is.. some who signed up as say Jeff can still sign up as jeff
or jeFF how can i fix this??
View Replies
View Related
My problem is like this:
http://www.4guysfromrolla.com/webte...q022400-1.shtml
But I use ASP + Access (Jet SQL 4)
View Replies
View Related
I have tried searching various sites including this one and I cant find a straight forward answer.
Code:
strSQL = "SELECT user.username FROM user WHERE username = '" & myUsername & "' AND password = '" & myPassword & "';"
How do I check for case sensitivity?
View Replies
View Related
how can I make the password entered into a database case sensitive when a user tries to sign in?
View Replies
View Related
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
any way of searching a database without case sensitivity? Make any sense?! I have an Access 2000 db with 11 fields in it: Name, Keywords..., Description... But whenever I try to search through it using the ASp site I made, it'll only find matches if they are written identically, I.E a search for "bob" won't find the entry "Bob".
I thought about making the entire contents of the db Uppercase, but I don't want to, as that would look crap when the contents are displayed in the website.
View Replies
View Related
i have developed an application with some of the files name myfile.asp, others TheFile.asp and others THATFILE.asp, that is i change the case in the names of the files. everything works on my pc, however i don't have much of cross-browser experience and before lauching it, i want to know if would matter or not? would it make any difference on Netscape, IE earlier versions, firefox, opera and so on.
in some of my files i use username, others UserNAME, others User Name and so it hereby used Request.form("username") or Request.form("User Name") Does this also makes any difference? I am basically talking about cross-browser viewing of the application.
View Replies
View Related
When a read a field (string) in my script and checks whether it matches user input or not, the comparison is case sensitive. Eg Code:
x=objRS1.Fields("Login_Name")
If (x=User_Input_Variable) Then
Code
End If
How do I drop the case sensitivity?
View Replies
View Related
I want to know how case sensitive works...simple code for an idea..thanks
View Replies
View Related
I use a replace char function to remove any bad words from user's input to prevent SQL injection. Here is what I use:
Function killChars(strWords)
Dim badChars, newChars
badChars = Array("bad words here")
newChars = strwords
For i=0 to uBound(badChars)
newChars = replace(newChars, badChars(i), "")
next
killChars=newChars
End function
Now the problem is if a user enter "DeLETe" in the input box, and this word is not get removed before entering the DB. because I entered "delete" in the badchars array.
so how can I enable a case sensitive in my function? So the bad words would get deleted regardless its in upper or lower case?
View Replies
View Related
how do we make asp check the case of the strings entered.i currently have a running db login... the thing is that i cant make asp check the case of the passwords entered..... and my search pages cant distinguish between "product" and "product" in a search page
View Replies
View Related
Is it possible to search a string for a upper case character? Here is what I am trying to do:
I have the following string:
Quote: str = "ProjectSectionPlanning"
I'm trying to break this string into:
Quote: str = "Project Section Planning"
View Replies
View Related
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
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
I have this below. If there are 0 records, I want to do nothing, which it
does. I need to perform a task if there is more than one. Case > 1 doesn't
work. The most records I would have are 5.
mycount=rs.recordcount
Select Case mycount
Case 0
Response.write ("No Records")
Case 1
View Replies
View Related
I was trying to colorize my Events from my eventtable.
Past = Grey
Today = Yellow
Future = Blue
Now my question:
How can i specify a statement not when its EQUAL to a number but greater or less than zero for example
I tried this thing and some else but it didn't really work...
color="#6464ce"
Case Else
color="black"
End Select
Probably its a simple solution and don't see the forest because there are so many trees
View Replies
View Related
I am having a hard time understanding how to use a SELECT CASE in ASP. I
have used it in VB but never in ASP scripting.
Scenerio:
I have 2 textboxes on a form that I have to allow entry to one or the other
or Both at the same time. Now I tried to use an If ElseIf but it got too
hard to track, so now I am using a SELECT CASE Statement.
TEXBOX1 named strEnglish
TEXBOX2 named strFrench
My code:
<%
strEnglish=Request.Form("strEnglish")
strFrench=Request.Form("strFrench")
Select Case
Then I have no idea how to go from here, because I have 2 input textboxes to
follow. Code:
View Replies
View Related
i have a name in the variable like this
std="bill stevens"
I want to display it like this
Bill Stevens
i want to make the first letter as capital
here is my code
std=Request.form("stname")
stdnamedisplay=Ucase(Mid(std,1,1)) & Mid(std,2)
its not working it still displays as bill stevens
View Replies
View Related
I am getting a syntax error on
Select Case Now
Case > "2/2/2004 12:30:00 AM"
response.redirect "votingover.asp"
case else
m=0
End Select
View Replies
View Related
Is replace case sensitive?
View Replies
View Related
"Stock Value" Could be anything from 0 to a million or so, and might include a decimal (12345.67) . I can't find how to do this:
Select Case StockValue
Case 0 To 30000
response.Write("Less than 30000")
Case 30000 To 80000
response.Write("30000 to 80000")
Case 80000 To 180000
response.Write("80000 to 180000")
Case Else ' > 180000
response.Write("Greater than 180000")
End Select
I also tried Case > 0 And <30000 .... and so on
how to write this select script please?
View Replies
View Related
I have one very simple question. I an just going blank on this. I writing a select case statment and want to know if I can have one of the case equile 2 values.
IE :
select case animal
case "dog" or "cat" /// this only works if i remove the or half
'write form here
case "mouse"
'do something
end select
View Replies
View Related
i am working on a login page in asp classic with microsoft access at the back, in current scenerio the username and passwords are not case sensitive and i have to make them C.Sensitive. can any one help me in this regard?
View Replies
View Related
right now i am developing a web site. i want to know how to write the code to change the case for the text which we entered in the text box control? for example: if user enter his name as john elan, then we should automatically convert that text into proper case. i mean the name should become John Elan.
View Replies
View Related
I'm trying to build a case statement that when a person logs in, the login page sends them to a redirect script based on the query string redirect.asp?id=1.
So far i can make myself a basic case statement, but i'm confused on how to get the window to pop up in a 400 x 600 window with no tool bars and such. any ideas?
View Replies
View Related
How to make first letter of word in upper case?
i.e. hello should return Hello
Is there any inbuilt function?
View Replies
View Related
Since my website uses a font for headlines that doesn't exist on default in windows I want to dynamicly create my headlines with images(of characters)
For this to work nicely I have to detect if a character is upper or lower case.
Like the string
"Welcome"
Here I want to replace the "W" with a upperw.png and then replace "elcome" with lowere.png, lowerl.png, lowerc.png...and so on, you get the picture.
Is this possible in asp (vbscript) ? or java if It's possible to integrate into my vbscript page.
View Replies
View Related
I'm trying to put together that standard case include method of building websites in ASP. The variable for the ASP switch comes from a query string.
<%
Select Case Request.QueryString("page")
case "home"
<!--#include file = "content/home.inc"-->
end select
%>
It isn't working, though... do you guys spot a syntax error or something??
View Replies
View Related
I have a access database that has data where the people entered their name all in upper case or in various forms of upper and lower case. Can a change all the data so it is in a proper format. Example: This is Joe Smoe. Or change it to be all lower case for email addresses?
View Replies
View Related
I am using the following replace() function:Code:
temp = Replace(temp,arr(i), "<a class=""definition"" title=""" & arr(i) & """ href=""digital-signage-glossary-of-terms.asp?modes=3&col=keywords&term=" & arr(i) & """>" & arr(i) & "</a>",1,-1,1)
The problem is that it does not appear to be case insensitive (even though I specified the "textual" argument as seen above.) For example, if "BPS" is a term in the array, but "bps" is in the "temp" variable, it will not get replaced.
View Replies
View Related