I was wondering if anyone could clarify the issue at hand here. I need to make a LIKE comparison. IE:
IF var LIKE "test" & * THEN
however that doesn't work.
Perhaps you could shed some light on the issue
Thanks,
Dave
Printable View
I was wondering if anyone could clarify the issue at hand here. I need to make a LIKE comparison. IE:
IF var LIKE "test" & * THEN
however that doesn't work.
Perhaps you could shed some light on the issue
Thanks,
Dave
VB Code:
If var Like "test*" Then 'or If var Like someOtherVar & "*" Then
:)
Wished that worked I really do =/
BIG FATTY ERROR:
Sub or Function not defined
Make much sence? NO!
CODE:
<%
DIM URL
URL = Request.ServerVariables("URL")
IF URL LIKE "/members/*" THEN
%>
<!-- #INCLUDE FILE="memnav.asp" -->
<%ELSE%>
<!-- #INCLUDE FILE="nav.asp" -->
<%END IF%>
Thanks,
Dave
Sorry, I don't know ASP.