URL not working right in anchor tag
I tried this:
<a href="http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&item=250778518281&ssPageName=ADME:B:SS:US:1123">Test</a>
but it stops after the first :S开发者_开发百科. Anyone know why?
It will show a link for:
S:US:1123">Test
I'm confused. :)
Working fine for me, but as a general rule, always ensure your query string parameters are URL Encoded, e.g:
http://cgi.ebay.com/ws/eBayISAPI.dll?ViewItem&item=250778518281&ssPageName=ADME%3AB%3ASS%3AUS%3A1123
精彩评论