I have a site where I use UrlRouting in my pages, and I use in one of my pages HttpContext.Current.Items["site_name"] to fill a Session for later use. It works fine with IE and Chrome on localhost, but when it's published it only works for IE, Chrome fills the Session with "favicon.ico" instead of the site name that is dynamic.
I fill the session with this:
HttpContext context = HttpContext.Current;
if (context.Items["site_name"] != null)
{
Session["NOM_SITE"] = context.Items["site_name"].ToString();
Session["DES_LOGIN"] = context.Items["site_name"].ToString();
}
My code for the UrlRouting is this one, take as an example the parameter requestContext.RouteData.Values["site_name"] being "thiago" :
public IHttpHandler GetHttpHandler(RequestContext requestContext)
{
HttpContext context = HttpContext.Current;
context.Items.Clear();
string SiteName = requestContext.RouteData.Values["site_name"] as string;
if (SiteName != null)
{
string vPagina = string.Empty;
switch (SiteName)
{
case "inicio": vPagina = "~/Default.aspx"; break;
case "play": case "playlist": vPagina = "~/Player.aspx"; break;
case "presentes": vPagina = "~/layout/Presentes.aspx"; break;
default: vPagina = "~/layout/Site.aspx"; break;
}
context.Items.Add("site_name", SiteName);
return BuildManager.CreateInstanceFromVirtualPath(vPagina, typeof(Page)) as Page;
}
return BuildManager.CreateInstanceFromVirtualPath("~/Default.aspx", typeof(Page)) as Page;
}
Instead of taking "thiago" and filling the 2 sessions, chrome takes "favicon.ico"