Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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"

share|improve this question
please post your code and view source html output from browser if possible – Prashant Lakhlani Dec 11 '12 at 12:16

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.