brighamscott
New Member
I have the following code that adds a new-line to the browser prompt for my web app written for ASP.NET:\[code\]RectangleHotSpot rhs = new RectangleHotSpot();rhs.HotSpotMode = HotSpotMode.Navigate;rhs.AlternateText = "Line one
Line Two"; //New-line to conform with FFrhs.NavigateUrl = "my URL";ImageMap.HotSpots.Add(rhs);\[/code\]But for some reason 'rhs.AlternateText' gets escaped into:\[quote\] "Line one& amp ;#013;Line Two"\[/quote\]when I view source in the web browser. (I had to add spaces above because this site escapes it too
Is there any way to prevent that?
Line Two"; //New-line to conform with FFrhs.NavigateUrl = "my URL";ImageMap.HotSpots.Add(rhs);\[/code\]But for some reason 'rhs.AlternateText' gets escaped into:\[quote\] "Line one& amp ;#013;Line Two"\[/quote\]when I view source in the web browser. (I had to add spaces above because this site escapes it too
