单击Treeview中的节点,我在后面的代码中构造HTML并将其加载到我的文字控件中。我不希望每次单击树视图控件中的任何节点时加载页面以获取数据以在文字中显示它。我怎样才能避免在这里回发? 我尝试在treeview周围使用updatepanel,如下所示,现在单击不同节点时数据没有变化,也没有回发。我该如何解决这个问题?
<table>
<tr>
<td valign="top">
<asp:UpdatePanel ID="UP_HealthCon_Ddl_Conditions" runat="server">
<contenttemplate>
<asp:TreeView ID="Tree_Index" NodeWrap="false" Style="font-size: 11px; font-family: Tahoma; font-weight: bold; text-align: left;" runat="server" Width="10px" EnableClientScript="False">
</asp:TreeView>
</contenttemplate>
</asp:UpdatePanel>
</td>
</tr>
</table>
<table>
<tbody>
<asp:Label ID="litSPName" runat="server" Font-Bold="true"></asp:Label>
<br />
<br />
<asp:Literal ID="lit_basic_Result" runat="server"></asp:Literal>
</tbody>
</table>
答案 0 :(得分:0)
在我的表中添加了contenttemplate和updatepanel,它确实有用!!!