"Joshua Beall" <> wrote in message
news:OO3Jb.11274$...
> Hi All,
>
> I just noted the following page request in my logs:
>
> /pages/blog/focus.php?ID=15%20onmousedown="return%20clk(1,this )"
>
> The part that beings %20 is foreign to me. Everything before that is
valid
> and common in my logs, but I do not know what the javascript portion is
> about. Can anyone enlighten me? I did a little google searching and I
> think it might be some sort of outbound link checking? For this
particular
> request there was no http referer listed.
The %20 is only a different way of writing a SPACE. It is in fact an ASCI
hexadecimal code. The % is used in the URL to ascape the code.
So all it means is:
pages/blog/focus.php?ID=15 onmousedown="return clk(1,this)"
If you want to read a bit more on URL codes, have a look at this one:
http://www.december.com/html/spec/esccodes.html