当前位置: 首页 > 图文教程 > 网络编程 > ASP.NET > Display XML in AxSHDocVw.AxWebBrowser

ASP.NET
asp.net Linq TO Sql 分页方法
asp.net 用XML生成放便扩展的自定义树
asp.ent下合并两个结构相同的DataTable
asp.net 遍历repeater中的控件的几种方式
asp.net 处理原文件中过长的viewstate代码
asp.net下遍历页面中所有的指定控件的代码
获取创建Membership的数据库创建脚本
asp.net AJAX注册类
asp.net 处理F5刷新页面重复提交页面的一个思路
ASP.NET 缓存分析和实践浅析提高运行效率
asp.net 读取并显示excel数据的实现代码
ASP.NET中常用的用来输出JS脚本的类
ASP.NET中内嵌页面代码的一个问题
asp.net(C#)操作excel(上路篇)
一个基于Asp.Net MVC的权限方案
ASP.NET实例教程:51job网站地区选择功能
ASP.NET教程:友好的Html和JS适合SEO
ASP.NET教程:使用.ashx文件去除重复内容
ASP.NET做SEO:制作架构清晰和更新及时的网站地图
ASP.NET优化:Sql注入和Html注入的黑帽SEO

ASP.NET 中的 Display XML in AxSHDocVw.AxWebBrowser


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-11-03   浏览: 42 ::
收藏到网摘: n/a

In my recent blog, AxShDocVw, SHDocVw, mshtml References, I showed how to set up a VS.NET project to use the AxSHDocVw.AxWebBrowser control.
I was recently asked how to display formatted XML in this control. Here's just one way. I'm sure you can find ways to improve upon it.private void DisplayXml ( AxSHDocVw.AxWebBrowser browser, XmlDocument document) { // generate a unique file name string filnam = Environment.GetFolderPath( Environment.SpecialFolder.InternetCache) + "\\" + document.GetHashCode().ToString(); // clean up just incase if (File.Exists(filnam)) File.Delete(filnam); // write wsdl to a temporary file StreamWriter file = File.CreateText(filnam); string text = document.OuterXml.Replace("utf-16","utf-8"); file.Write(text); file.Close(); file = null; // navigate to the temporary file object refmissing = System.Reflection.Missing.Value; browser.Navigate(filnam, ref refmissing, ref refmissing, ref refmissing, ref refmissing); }

This can be used when the control has not yet been initialized and does not yet have a body or DOM.