Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

list only some stuff in a db

Status
Not open for further replies.

help120

Technical User
Apr 15, 2001
198
US
I want to show info based on what's in a field. This is what I was thinking of..

if request.field("category") = photoshop then

response .write rs("title")

end if
 
If u are compring and then displaying then use :

if strcomp(request.field("category")& "","photoshop",vbtextcompare)= 0 then

response.write rs("title")

end if
 
If u are compring and then displaying then use :

if strcomp(request.field("category")& "","photoshop",vbtextcompare)= 0 then

response.write rs("title")

end if

srinu...
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top