Forum Discussion

Vasily_Zaytsev's avatar
Vasily_Zaytsev
Iron Contributor
Jul 14, 2022
Solved

ERR_CACHE_MISS error

I have Sharepoint 2019 with Kerberos enabled. On project detail page I add my custom web part which redirect to Power BI report (with Kerberos). From: https://myserver.mydomain/PWA/Project%20Detail...
  • Vasily_Zaytsev's avatar
    Jul 14, 2022

    I found solution for this problem, BUT is it sharepoint 2019 bug?
    THE SOLUTION:)
    protected void Page_Load(object sender, EventArgs e)
    {
    if (!IsPostBack)
    {
    if (HttpContext.Current.Request.Url.ToString()!= HttpContext.Current.Request.Url.ToString().ToLower())
    {
    Response.Redirect(HttpContext.Current.Request.Url.ToString().ToLower(),false);
    }
    }

Resources