CLONES & DOMAINS The design supports multiple domains sharing a common root and set of .net files. A default landing page only performs two things: 1. Use domain name to ID a group (ID) 2. Call Homepage.aspx for group (ID) Upon loading, the default.aspx page uses the domain (HTTP_HOST) to call homepage.aspx, as follows. protected void Page_Load() { string pDomain= Request.ServerVariables["HTTP_HOST"]; if (pDomain.IndexOf("aaworcester") > -1) { Response.Redirect("Homepage.aspx?GRP=WAI"); } else if (pDomain.IndexOf("district23aa") > -1) { Response.Redirect("Homepage.aspx?Grp=District23"); } else if (pDomain.IndexOf("aaemassd24") > -1) { Response.Redirect("Homepage.aspx?Grp=District24"); } else if (pDomain.IndexOf("subSiteX") > -1) { Response.Redirect (subSiteX/default.html); } } Using loading, homepage.aspx initializes itself based on the GRP it is called with. For any site cloned, the domain name (and redirect) must be included in this code snippet.