문제

is it possible to have a url that has a param with an & embedded in the value (eg &FirmName=Test&Firm) and not have the browser treat that & in the value as the beginning of another param???

도움이 되었습니까?

해결책

You need to urlencode it - & is %26:

&FirmName=Test%26Firm

다른 팁

Yes, just encode the "&" using URL encoding ("%26")

Most web programming frameworks have functions that take a string and URL-encode it

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top