My problem is as follows. In my ASP page I read SVG through 'embed'
tag. I am changing few things in this svg file and then I need to
return changed svg back to server. I use IE6 and ASP. NET. I tried to
send it by XmlHttp but with no success.

var svgDocument;

function svgInitialize(evt) {
        svgDocument = evt.getTarget().getOwnerDocument();
}


function SendTest() {
        var XHR = new ActiveXObject("Msxml2.XMLHTTP");
        XHR.open("POST", "default.aspx",false);
        XHR.send(svgDocument);
}





-----
To unsubscribe send a message to: [EMAIL PROTECTED]
-or-
visit http://groups.yahoo.com/group/svg-developers and click "edit my 
membership"
---- 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/svg-developers/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 



Reply via email to