Nicholas Lucaroni schrieb: > I don't want to seem like an a$$ for reposting this, but it is very > odd, and want to make sure that the necessary people see this. > > problem: Upgrading from adobe SVG viewer 3.02 -> 3.03 causes my SVG > page not to be displayed. It's an ASP page that renders database > information into dynamically drawn flow chart. The SVG is an embedded > object on a page with some simple directions on navigation. > > I've looked around the internet and have seen other places with the > same issue. There solution is "DONT UPGRADE TO 3.03!". It seems like > a co-out to me. What is the problem? > > While writing the page i used the 1.1 specs on the SVG reference > page, so my SVG should be correct. I think the issue is with ASP, > rendering the SVG returns a HTML document, not one with an SVG > extension. (when you right click on the document in 3.02 then > click "view SVG" it pops up a page of text(all the text objects on in > the SVG image), and the URL extension is .htm. > > So what do you all think? is that the possible reason? has anyone > experiemented with SVG and ASP, i've seen pages with SVG and ASP.NET > but they weren't old or anything, but probably used 3.02. Thanks for > your help, i hope someone can help me. > > -nick
Hi Nick there are a few thing you have to care about, so that dynamicly generated svgs work across browsers. 1.you have to set the right Mime Type : response.contentEncoding="image/svg+xml" (make sure that this mime is registered in your iis) 2.use the correct namespace, e.g. make sure your svg document starts like this: <svg xmlns="http://www.w3.org/2000/svg"> 3. make sure your querystring ends with .svg http://yourdomain/yourasp.asp?ex=.svg if you dont do 3., IE will somtimes not render your SVG, so i gues this is what your looking for. hth Holger ----- 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/

