In JSP I can share HTML code by using include:
<jsp:include page="subsection.jsp" >
For the life of me, I can't tell how in ASP.NET I should be including shared HTML. I could use a template control, but this really isn't the same thing. I could use a site master page and content placeholders, but this also is not the same and requires a different approach to developing my pages.
Am I out of luck or is there a function in ASP.NET similar to JSP's include?