Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iTemplate what is it and place where i can get GOOD example in c# [closed]

HI ,

I am currently trying to learn more about custom controls and how to use them etc. i have come across iTemplate interface and was hoping that someone could better explain its use and point me toward a good example implementation. From what i have found it allows you to change how an asp.net control will display items. ive tried searching code project etc for a good example but none explain it well. Id ideally like a very basic example and a more complex one.

thanks Niall

like image 545
Somedeveloper Avatar asked Oct 01 '10 10:10

Somedeveloper


1 Answers

ITemplate: Defines the behavior for populating a templated ASP.NET server control with child controls. The child controls represent the inline templates defined on the page. (taken from MSDN).

Take a look at these great tutorials: Developing Custom ASP.NET Server Controls or Templated Server Control Example.

like image 103
Kris van der Mast Avatar answered Nov 13 '22 20:11

Kris van der Mast