> <a href=Test?id="PID1 203" >2</a>
> <br>
[quoted text clipped - 3 lines]
>
> Test?id="PID1
Firstly, put attributes in single or double quotes. Secondly spaces
shouldn't appear in URLs. Normally they should appear escaped as %20. In
the case of a query string, + replaces space. So:
<a href='Test?id="PID1+203"'>
Although, probably what you want is:
<a href='Test?id=PID1+203'>
Tom Hawtin
Arne Vajhøj - 09 May 2007 02:04 GMT
>> <a href=Test?id="PID1 203" >2</a>
>> <br>
[quoted text clipped - 13 lines]
>
> <a href='Test?id=PID1+203'>
Assuming it is in a JSP page then using URLEncoder.encode
would be a good thing.
Arne