Forum Discussion
Vasily_Zaytsev
Jul 14, 2022Iron Contributor
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...
- 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);
}
}
Vasily_Zaytsev
Jul 14, 2022Iron Contributor
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);
}
}