Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望能够将树视图与 asp.net 中的站点地图数据提供程序绑定,并且当用户单击节点时,它不会导航到该页面,而是更新文本框。
我不确定这是否可能并且正在努力寻找有关如何实现这一目标的任何建议。
我也使用 VB.Net 作为编码语言。
这必须使用 JavaScript 来完成。使用一个函数来阻止每个节点上的默认单击操作,并将树中的值放入文本框中。
例如使用 JQuery...
$(".nodes").click(function(event) { event.preventDefault(); $("#<%= TextBox.ClientID").text($(this).text()); });