如何使用asp.net 1.1中的webcontrol中的TreeView

第一步
修改web.config
<?xml version="1.0" encoding="utf-8" ?>
<configuration>

 <configSections>
        <section name="MicrosoftWebControls" type="System.Configuration.NameValueSectionHandler, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />   
</configSections>
   
 <MicrosoftWebControls>
 <add key="CommonFiles" value="treepath" />
</MicrosoftWebControls>
   
  <system.web>
...................................
第二步,在想使用此控件的页面加入以下语句
<%@ import namespace="Microsoft.Web.UI.WebControls"%>
<%@ register tagprefix = "iecontrols"
    namespace="Microsoft.Web.UI.WebControls"
    assembly="Microsoft.Web.UI.WebControls"
%>

 <iecontrols:treeview id="tvbasic" autoselect="false" shoplus="true" showlines="true" expandlevel="2"
    runat="server">
    <iecontrols:TreeNode Text="root" Expanded="True">
     <iecontrols:TreeNode Text="Node1" Expanded="True">
      <iecontrols:TreeNode Text="Node11"></iecontrols:TreeNode>
     </iecontrols:TreeNode>
    </iecontrols:TreeNode>
   </iecontrols:treeview>
第三
将控件的这个属性改为空,(转到设计页面右击控件->属性)SystemImagesPath
第四,
在网站中新建一个treepath目录
将C:/Program Files/IE Web Controls/build/Runtime下的文件拷入其中
第五,

写代码
 this.tvbasic.Nodes.Clear();
 TreeNode tn=new TreeNode();
 tn.Text="nodes level1";
 tvbasic.Nodes.Add(tn);
 TreeNode tn2=new TreeNode();
 tn2.Text="level2";
 tvbasic.Nodes.Add(tn2);

 TreeNode tn3=new TreeNode();
 tn3.Text="level3";
 tn.Nodes.Add(tn3);

其它可见
http://www.cnblogs.com/adandelion/archive/2005/09/13/235681.html 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值