ITemplate, what it is and the place where I can get a GOOD example in C #

Hi

I'm currently trying to learn more about user controls and how to use them, etc. I came across the iTemplate interface and hoped that someone could better explain its use and point me to a good example implementation. From what I found, you can change the way the asp.net controls are displayed. ive tried searching for project code, etc. for a good example, but no one explained it well. Id is ideal as a very simple example and more complex.

thanks niall

+6
c # user-controls
source share
1 answer

ITemplate: defines the behavior for populating an ASP.NET server template element using child controls. The child controls are built-in 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 .

+2
source share

All Articles