Salutl,
Voici un exemple. Clicke le noeud "My Info":
http://www.componentart.com/demos/treeview/features/nesting_aspnetContent/WebForm1.aspx
Cela va te donner l'idee.
----
Here's an example. Click the "My Info" node:
http://www.componentart.com/demos/treeview/features/nesting_aspnetContent/WebForm1.aspx
That will give you the idea.
Ken
<ComponentArt:NavigationCustomTemplate id="MyInfoTemplate">
<Template>
<table width="165" cellpadding="1" cellspacing="1" border="0">
<tr>
<td class="MainText" style="background-color:gray;color:white;">
First Name: </td>
<td style="background-color:gray;"><asp:TextBox id="txtFirstName"
Text='<%# Container.Attributes["FirstName"] %>' runat="server" width="100"
/></td>
</tr>
<tr>
<td class="MainText" style="background-color:gray;color:white;"> Last
Name: </td>
<td style="background-color:gray;"><asp:TextBox id="txtLastName"
Text='<%# Container.Attributes["LastName"] %>' runat="server" width="100"
/></td>
</tr>
<tr>
<td class="MainText" style="background-color:gray;color:white;">
Gender: </td>
<td class="MainText" style="background-color:gray;color:white;">
<asp:RadioButton ID="radMale" GroupName="Gender" Checked="true"
Text="Male" Runat="server" />
<asp:RadioButton ID="radFemale" GroupName="Gender" Text="Female"
Runat="server" />
</td>
</tr>
</table>
</Template>
</ComponentArt:NavigationCustomTemplate>