Generating SVG with ASP

<%
 Response.ContentType="image/svg+xml"
 text="Hello World!"
%>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN">
<svg xmlns="http://www.w3.org/2000/svg"
 xmlns:xlink="http://www.w3.org/1999/xlink"
 viewbox="0 0 200 200">
<title>Simple SVG Generation</title>
<text x="10px" y="10px"><%=text%></text>
</svg>