Comments
Sort by recent activity
My AppData is in the usual place.
The issue is that the SQL Search HTML control that shows the ads is treating the URL space (%20) as a literal part of the address and converting the % to a URL % (%25) -
/Red Gate/SQLSearch 1/Ads/...
should get converted to
/Red%20Gate/SQLSearch%201/Ads/...
but it's getting converted to this -
/Red%2520Gate/SQLSearch%25201/Ads/...
It looks like it's getting converted twice and the second time it treats the converted URL as an unconverted URL.
I'm wondering if it's a .Net thing. I've got .Net 4.5 beta installed.
Anyone? Bueller? / comments
My AppData is in the usual place.
The issue is that the SQL Search HTML control that shows the ads is treating the URL space (%20) as a literal part of the address and converting the % to a URL % (...