I am going to have template files that I will be using to generate XML files . Templates have server code blocks with object and property for example
<firstname><%=User.FirstName%></firstname>
<# include address.tpl pass=User> address.tpl will have address node
Is there any way to do that ? I already used T4 Templates but its not flexible as I need to include multiple nested templates and also pass objects to it.