Chrome on iPad not working with ASP.NET 4

前端 未结 4 1969
深忆病人
深忆病人 2021-02-03 10:40

I just downloaded Google Chrome for iPad and I noticed that it doesn\'t work with ASP.NET 4 websites!

For example, create a simple page:



        
4条回答
  •  遇见更好的自我
    2021-02-03 11:15

    Below worked for me...

    if (Request.UserAgent != null && Request.UserAgent.IndexOf("crios", StringComparison.OrdinalIgnoreCase) > -1)
    {
        this.ClientTarget = "uplevel";
    }
    

提交回复
热议问题