Skip to content

Instantly share code, notes, and snippets.

@yihyang
Created November 16, 2015 02:03
Show Gist options
  • Save yihyang/e54028fb7378f15f15f1 to your computer and use it in GitHub Desktop.
Save yihyang/e54028fb7378f15f15f1 to your computer and use it in GitHub Desktop.
Advanced ASP.NET Component
# Advanced components that existed within ASP.NET
- UserControl -> User containers that can add markup / Web Server Control
Can treat the user control as a unit and define properties and methods for it
(https://msdn.microsoft.com/en-us/library/fb3w5b53.aspx)
- TreeView -> Provide tree like way of presenting information in ASP.NET
Typically used as navigation component.
(Using Web.sitemap / XMLDataSource)
(http://www.aspnetbook.com/basics/asp-net-treeview-control.php)
- MenuControl -> Custom Menu
(Can be Static / Dynamic)
(http://www.aspnetbook.com/basics/asp-net-menu-control.php)
- SiteMapPath -> User current location in the web
E.g. (Home -> Product -> Product 1)
Uses web.sitemap file.
(http://www.aspnetbook.com/basics/asp-net-sitemappath-control.php)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment