Back in the day when it one of the main technologies I used they got me less, I seem to remember, but nowadays thats not entirely the case!
It's the obtuse error message that got me this time.
baseString = URLEncode(baseString)
Generates this error:
Microsoft VBScript runtime error '800a000d'
Type mismatch: 'URLEncode'
The fix? Simple.
baseString = Server.URLEncode(baseString)
DOH! Hopefully if this trips you up, you'll find this post in less time than it took me to realise what a doughnut I was being..!
1 comments:
Thanks Grumpy person.
Post a Comment