//Custom CSS for Unique Hostnames -- CRP //Need to add the m_CSS/m_JS variable(s) to the rest of the main pages private void handleSkins() { m_CSS = "style_custom"; m_JS = "pg_custom"; if (null != Request.Url.Host) { string tmp = Request.Url.Host; if (0 == String.Compare(tmp, "hostname1.domain.com", true)) { m_CSS = "style_custom_hostname1"; m_JS = "pg_custom_hostname1"; } else if (0 == String.Compare(tmp, "hostname1.domain.com", true)){ m_CSS = "style_custom_hostname2"; m_JS = "pg_custom_hostname2"; } else if (0 == String.Compare(tmp, "hostname1.domain.com", true)){ m_CSS = "style_custom_hostname3"; m_JS = "pg_custom_hostname3"; } else { m_CSS = "style_custom"; m_JS = "pg_custom"; } } }