diff --git a/knowledge-base/add-link-right-radtreeview-aspnet-ajax.md b/knowledge-base/add-link-right-radtreeview-aspnet-ajax.md
new file mode 100644
index 000000000..62868bba5
--- /dev/null
+++ b/knowledge-base/add-link-right-radtreeview-aspnet-ajax.md
@@ -0,0 +1,103 @@
+---
+title: Adding Link to the Right of RadTreeNode in RadTreeView
+description: Learn how to add a text link to the right of specific RadTreeNode elements in a RadTreeView when loading data from an XML file.
+type: how-to
+page_title: How to Add Link to the Right of RadTreeNode in RadTreeView
+meta_title: How to Add Link to the Right of RadTreeNode in RadTreeView
+slug: add-link-right-radtreeview-aspnet-ajax
+tags: treeview, hyperlink, ui for asp.net ajax, nodedatabound, xml, node
+res_type: kb
+ticketid: 1695329
+---
+
+## Environment
+
+
+
+
+| Product |
+
+TreeView for UI for ASP.NET AJAX
+ |
+
+
+| Version |
+ All |
+
+
+
+
+## Description
+
+I want to add a text link to the right of specific RadTreeNode elements in my [RadTreeView](https://docs.telerik.com/devtools/aspnet-ajax/controls/treeview/overview) while loading data from an XML file. I need a solution that allows me to include the link URL and text as part of the XML structure and manipulate the nodes to display the links dynamically.
+
+This knowledge base article also answers the following questions:
+- How to add a hyperlink next to RadTreeNode elements in RadTreeView?
+- How to customize RadTreeNode with a link using XML data?
+- How to use NodeDataBound for adding links dynamically?
+
+## Solution
+
+To achieve this, extend the XML structure to include the link properties (e.g., URL) using the `NavigateUrlField` property. Use a `NodeTemplate` to render the link alongside the RadTreeNode text.
+
+### XML Structure Example
+
+Update your XML file to include the URL for each node where you want the link to appear:
+
+````XML
+
+
+
+
+
+
+
+
+
+
+
+````
+
+Use the following configuration for your RadTreeView control:
+
+````ASP.NET
+
+
+ <%# DataBinder.Eval(Container, "Text") %>
+
+
+
+
+
+
+
+
+````
+
+Use the `NodeDataBound` event to dynamically set the properties of the link:
+
+````C#
+protected void RadTreeView1_NodeDataBound(object sender, RadTreeNodeEventArgs e)
+{
+ string url = e.Node.NavigateUrl;
+
+ if (!string.IsNullOrEmpty(url))
+ {
+ HyperLink link = (HyperLink)e.Node.FindControl("SectionLink");
+
+ if (link != null)
+ {
+ link.Text = url;
+ link.NavigateUrl = url;
+ link.Visible = true;
+ link.Style.Add("margin-left", "10px");
+ }
+ }
+}
+````
+
+This approach allows you to control which nodes display a link dynamically based on the XML data while keeping the structure data-driven.
+
+## See Also
+
+- [NodeDataBound Event](https://docs.telerik.com/devtools/aspnet-ajax/controls/treeview/server-side-programming/events/nodedatabound#nodedatabound)