Hello! I have this problem i can't solve: I need to display a svg inside an xhtml file, and i understood that i have three basic options:
iframe - it;s not valid xhtml valid
embed - not valid anymore
and object.
I tryied to display it with both iframe and embed and it works, but i want to do the same thing with <object>
The svg is pretty big and it's dynamic generated according to the parameter sent by my default.aspx to a handler inside a CloudBlockBlob and then the handler reads from that block in a bufferised manner and sends response back to default.aspx
The way i did it with iframe and embed was to specify 2 atributes: id="someid" and runat="server" and on page load: svgFrame.Attributes["src"] = "getSvg.ashx?.svg&lsystem=" + param;
If i try to do the same i get a compilation error because of runat attribute.
Can someone please help me with an ideea?
Than ...
Go to the complete details ...