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 > use like in if statement

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 07-10-06, 11:19
freshfitz freshfitz is offline
Registered User
 
Join Date: May 2006
Posts: 20
use like in if statement

can i use like in a if statement i am tring to display everything that begins with letter L

if objrs.Fields("serv_code") like "%L" then
response.write objrs.fields("serv_status")

if objrs.Fields("serv_code") <> like "L" then
response.write objrs.fields("serv_status1")

my serv_code fields contain L01, L02, L03, L04, S01, S02, S03, T01, T02 and so on
Reply With Quote
  #2 (permalink)  
Old 07-10-06, 15:00
myle myle is offline
(Making Your Life Easy)
 
Join Date: Feb 2004
Location: New Zealand
Posts: 1,143
can't have wide cards in a if

if objrs.Fields("serv_code") like "%L" then
response.write objrs.fields("serv_status")

could look like

if instr(objrs.Fields("serv_code"),"L")>0 then response.write objrs.fields("serv_status")

===============
if objrs.Fields("serv_code") <> like "L" then
response.write objrs.fields("serv_status1")

if left(objrs.Fields("serv_code"),1) = "L" then
response.write objrs.fields("serv_status1")

=================================

could have the instr(??,??) the wrong way
__________________
hope this help

See clear as mud


StePhan McKillen
the aim is store once, not store multiple times
Remember... Optimize 'til you die!
Progaming environment:
Access based on my own environment: DAO3.6/A97/A2000/A2003
VB based on my own environment: vb6 sp5
ASP based on my own environment: 5.6
VB-NET based on my own environment started 2007
SQL-2005 based on my own environment started 2008
MYLE
Reply With Quote
  #3 (permalink)  
Old 07-11-06, 10:33
freshfitz freshfitz is offline
Registered User
 
Join Date: May 2006
Posts: 20
awesome thanks!!!
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