Add this code snippet in your aspx page..This will output the HTML in the page...
XmlDocument docXml = new XmlDocument();
XslTransform docXsl = new XslTransform();
docXml.LoadServer.MapPath("default.xml");
docXsl.Load(Server.MapPath("default.xsl"));
docXsl.Transform(docXml,null,Response.OutputStream ,null);
|