|
|
|
Junior Member
      
Group: Customers
Last Login: 7/14/2007 7:51:12 PM
GenoPro Version: 2.0.0.7
Posts: 17,
Visits: 47
|
|
Documentation for Util.HrefEncode says "Since some characters are valid in URLs as delimiters, those characters are left alone", and includes ampersand as one of the characters left untouched. However, http://www.w3.org/TR/xhtml1/#C_12 recommends that ampersands are actually encoded with the HTML entity (&). This is especially important in SVG as the interpreter rejects URLs containing raw ampersands.
|
|
|
|
|
Legendary Master
       
Group: Administrators
Last Login: Today @ 8:09:17 AM
GenoPro Version: 2.4.0.3
Posts: 3,523,
Visits: 14,878
|
|
If you want to encode all the characters in the URL, use Util.UrlEncode. The ampersand (&) will be encoded as %26.
|
|
|
|