hi hollystyles
>>The server belongs to my ISP, how can I check what it's serving?
you can check with this with this simple script
Set xml = CreateObject("msxml2.xmlhttp")
xml.open "GET", "http://www.gadgitbox.pwp.blueyonder.co.uk/SVGViewSource001.svg", False
xml.send ""
msgbox(xml.getresponseheader("content-type"))
if its an apache server, you can add a .htaccess file to your root folder containing the lines
AddType image/svg+xml svg svgz
AddEncoding x-gzip svgz
concerning ASV6 well it works fine with IE6 and firefox here...
you might be interrested in the latest mozilla with native SVG support
it can be downloaded here:
ftp://ftp.mozilla.org/pub/mozilla.org/mozilla/nightly/contrib/latest-trunk/
just grab the file mozilla-win32-svg-GDI.zip
if you run that build for the first time, you have to enable svg first. to do so,
1. run mozilla
2. type about:config in the addressfield of the browser
3.in the appearing searchfield type svg
4.double click on the the variable appearing to set it to true
more info can be found here:
http://www.mozilla.org/projects/svg/
hth
bernd