Just as you would on a asp.net page... templates in umbraco are asp.net masterpages, so whatever is possible in asp.net, can be done via the template in the admin ui.
For example, if you'd like to include a login control on a template just add
<asp:Login ID="Login1" runat="server" />
If you're including asp.net controls, make sure to add a <form runat="server"></form> to your templates as well...
Asp.net control
How can i add asp.net control on template.
Mitali,
Just as you would on a asp.net page... templates in umbraco are asp.net masterpages, so whatever is possible in asp.net, can be done via the template in the admin ui.
For example, if you'd like to include a login control on a template just add
If you're including asp.net controls, make sure to add a <form runat="server"></form> to your templates as well...
Hope this helps.
Regards,
/Dirk
is working on a reply...