I got this code from the SDL Tridion site related to displaying ASP.Net custom elements on the page.
What I understand is a menu of tag tags, content, search results - a .ascx file. But I do not understand the other controls that they used. Can someone explain this piece of code?
<%@ Page Language="C#" %> <html> <head> <title> <tridion:content ExpectXmlContent="true" XPath="//tcm:Content/tridion:Content/tridion:title" runat="server"/> </title> <tridion:content templateuri="tcm:47-3016-32" runat="server"/> <tridion:track runat="server" xpath="//tcm:Metadata/tridion:Metadata/tridion:category" pageuri="tcm:47-2966-64" /> <tridion:secure issecured="false" redirecturl="~/login/login.aspx" runat='server'/> </head> <body> <tridion:menu menutype="topnav" runat="server"/> <tridion:content templateuri="tcm:47-3052-32" runat="server"/> <tridion:searchresults Category="Categories" templateuri="tcm:47-3058-32" runat="server"/> </body> </html>
Coder source share