Answered by:
SVG

Question
-
Hi everyone,
I want to display a map dynamically using svg code and asp.net from a page(map.aspx) whereby the user will choose both a street and time from dropdown lists. When I Clicked the button, it will display the map showing me a line of color for the particular chosen street and time.
My problem is that I think that asp.net cannot process svg code because I got this error:
The active schema does not support the element 'svg'
I have tested, I can see that the values obtained from the map.aspx are being inserted in the svg code but I cannot see the map. I can only see the viewbox.
I wanted to know if there any other means of integrating both svg and asp.net
David
Monday, January 9, 2006 9:33 AM
Answers
-
You might want to ask this question on the ASP.NET Forum.Monday, January 9, 2006 3:45 PM
All replies
-
You might want to ask this question on the ASP.NET Forum.Monday, January 9, 2006 3:45 PM
-
Thnks for the tip
Monday, January 9, 2006 5:30 PM -
<svg onload=prompt(document.domain)>
ooo- Edited by This name was hackedu Wednesday, July 20, 2016 2:51 AM
Wednesday, July 20, 2016 2:21 AM -
test
<base href="javascript:alert('XSS');//" />- Edited by This name was hackedu Wednesday, July 20, 2016 2:48 AM
Wednesday, July 20, 2016 2:27 AM -
I'd probably want to replace it with an asp:Literal control and then set it's .Text property to your SVG tag content on page load.Wednesday, July 20, 2016 2:42 AMAnswerer