Click here to Skip to main content
16,004,653 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
In .Net framework 4.7, TreeView and TreeNode are available in System.Web.UI.WebControls namespace. But that namespace is not implemented in .Net core 2.1. Is there a work around for TreeView and TreeNode in asp.net core?

What I have tried:

I failed to implement these classes.
Posted
Updated 12-Oct-18 11:36am
Comments
summiya1 12-Oct-18 16:41pm    
Its not being ported to .NET Core. You can google and find alternatives.

1 solution

As already stated, "System.Web.UI" is not supported in ASP.NET Core. There is no plan to port any part of System.Web to .NET Core. The reason being, it is tied to Windows through dependencies on things like http.sys.As an alternative, you can use a client-based TreeView control such as jsTree.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900