|
|
 |
Re: FN-FORUM: ISAPI Rewrite issues
date posted 11th September 2007 14:10
On 11 Sep 2007 13:30:29 -0000, Sam M - www. wiredeyes. com
[EMAIL REMOVED] wrote:
>
> Alternatively if you want something more readable then you could write a
> function to conver everything except for compatable charictors to a dash for
> example.
>
> Function cleanURL(str)
> Set regEx = New RegExp
> regEx.Pattern = "[^0-9a-zA-Z-_]"
> regEx.IgnoreCase = True
> regEx.Global = True
> cleanURL = regEx.Replace(str, "-")
> end function
>
I guess that doesn't improve SEO??? Not really fused about
readability. In any case I did the server.urlencode you said in your
last post and it's all working.
Thanks
Paul
|
 |
|