Treeview的文件目录配置
.NET1.1中的TreeView的目录设置:
将treeview的文件和图片拷贝到项目的目录中,这样可以和项目一起打包。
这需要在文件web.config进行配置:
将treeview的文件和图片拷贝到项目的目录中,这样可以和项目一起打包。
这需要在文件web.config进行配置:
<configSections>
<section name="MicrosoftWebControls" type="System.Configuration.NameValueSectionHandler, System, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
</configSections>
<MicrosoftWebControls>
<add key="CommonFiles" value="/SBTZ/webctrl_client/1_0"></add>
</MicrosoftWebControls>
<section name="MicrosoftWebControls" type="System.Configuration.NameValueSectionHandler, System, Version=1.0.3300.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
</configSections>
<MicrosoftWebControls>
<add key="CommonFiles" value="/SBTZ/webctrl_client/1_0"></add>
</MicrosoftWebControls>