下载和在VS.NET 2003安装IEWebControls组件实现TreeView控件使用

来源:互联网 发布:网络管理兼职 编辑:程序博客网 时间:2024/05/16 06:24

1、更改方法参数
    安装完后找到目录下的src文件夹treeview.cs文件打开(建议使用VS.NET平台打开,也可以用记事本)
找到1193行  xslTrans.Transform(((IXPathNavigable)xmldoc).CreateNavigator(), null, stream);
改成 xslTrans.Transform(((IXPathNavigable)xmldoc).CreateNavigator(), null, stream,null);添加一个参数保存修改
2、运行VS.net自带的命令提示符运行到你安装的目录运行build.bat文件
3、更改build.bat文件
    打开README.txt文件找到xcopy /s /i ./build/Runtime c:/Inetpub/wwwroot/webctrl_client/1_0 /y复制
    build.bat文件右击编辑找到xcopy src/Runtime build/Runtime /E /Y /I /Q删除,,更改成xcopy /s /i ./build/Runtime c:/Inetpub/wwwroot/webctrl_client/1_0 /y 运行build.bat文件
    安装成功