Apr 2, 2002 #1 timtom Programmer Jul 12, 2001 78 GB I need to get rid of the first five characters of a querystring. Is there a simple way of doing this? Thanks for any help. Sarah WASN'T FIT ENOUGH FOR THE POLICE FORCE
I need to get rid of the first five characters of a querystring. Is there a simple way of doing this? Thanks for any help. Sarah WASN'T FIT ENOUGH FOR THE POLICE FORCE
Apr 2, 2002 1 #2 SarkMan Programmer Apr 1, 2002 182 US strTest=request.querystring("value" Response.Write mid(strTest,6,len(strTest)-5) Upvote 0 Downvote
Apr 2, 2002 Thread starter #3 timtom Programmer Jul 12, 2001 78 GB Cheers Sarkman. Didn't think I'd fix that before I went home today WASN'T FIT ENOUGH FOR THE POLICE FORCE Upvote 0 Downvote
Cheers Sarkman. Didn't think I'd fix that before I went home today WASN'T FIT ENOUGH FOR THE POLICE FORCE
Apr 2, 2002 #4 CodeFish Programmer Sep 27, 2001 128 GB Or you can use:- Right(strTest, Len(strTest) - 5) Codefish Upvote 0 Downvote