displaying XML
I'm using the code shown below to display XML. But how do i configure it to be displayed in IE instead or is there another alternative?
Dim oDocument As New XmlDocument
oDocument.Load(Server.MapPath("asd\a.xml"))
Response.ContentType = "text/xsl"
oDocument.Save(Response.Output)
|