Apr 26, 2005 #1 scottRen Technical User Joined Feb 4, 2005 Messages 69 Location CA How can i say: If Request.QueryString("date") contains a / as the 5th character from the end Then thanks
How can i say: If Request.QueryString("date") contains a / as the 5th character from the end Then thanks
Apr 26, 2005 #2 steven290 Programmer Joined Mar 13, 2005 Messages 1,077 Location US Code: If instr(Request.QueryString("date","/")=5 then Upvote 0 Downvote
Apr 26, 2005 #3 steven290 Programmer Joined Mar 13, 2005 Messages 1,077 Location US oops from the end use instrrev() Upvote 0 Downvote