我使用visual basic进行编码。我拖累删除了树视图控件并编辑了其节点。 现在当我运行我的页面时,我收到此错误 - >
“TreeView”类型的控件“TreeView1”必须放在带有runat = server的表单标记内。
在源代码中我有以下条目
asp:TreeView ID =“TreeView1”runat =“server”Height =“155px”Style =“z-index:100; left:41px; 位置:绝对;上:108px“Width =”1px“ImageSet =”Contacts“NodeIndent =”10“
答案 0 :(得分:2)
只需在页面上放置一个表单:
所以只需在body标签内添加:
<body>
<form id="MainForm" runat="server">
... your form controls, including the treeview
</form>
</body>