Web display problem after ug to 6.0.1

Greetings

I upgraded to Domino 6.0.1 last night on our web server. When I look at some of the pages were I have created a title it looks like Latest%20Audit%20Reports, instead of Latest Audit Reports. I use this function @ReplaceSubstring(@Middle(Query_String + “&”; “&Title=”; “&”); “+”; " ") to extract the title from the command line. In version 5 I had spaces now I have %20.

I’m sure this must be a setting I have missed with the new version.

Any help would be greatly appreciated.

Cheers

Peter Lock

Technical Support Specialist

Australian National Audit Office

Subject: Web display problem after ug to 6.0.1

The problem isn’t what you’re catching – it’s that Domino now constructs its URLs properly if there are spaces. Previously, Domino replaced the spaces with plus signs, now it URLEncodes spaces to %20, as it should have all along. If you had been using Query_String_Decoded, you would not have noticed a difference, since Domino would have decoded the special characters for you before you parsed the query string – in R5 as well as in D6. That leaves you two options – you can either use Query_String_Decoded, or you can @URLDecode the Query_String.

Subject: RE: Web display problem after ug to 6.0.1

Stan

Thank you for your reply. I did some further investigating and noticed that Domino now correctly encodes the URL as you have mentioned. I will change my code to use Query_String_Decoded instead.

Cheers

Peter