User Controls (.ascx) pages.


build your template and name it to something.ascx
Make sure that this is at the top
<%@ Control Language="VB" %>


. then on the aspx page you need to call that template:

at the top of the page
<%@ Register TagPrefix="TAL" TagName="AddPlayer" Src="Pagelets/newuser.aspx.ascx" %>

change as needed

then stick it where you need it

<TAL:AddPlayer runat="server"/>