__doPostBack is undefined on DotNetNuke website for IE 10

前端 未结 3 1026
天命终不由人
天命终不由人 2021-01-17 23:03

I have a DotNetNuke site, and today a customer called in and said it wasn\'t working on IE 10. Specifically the login and register links weren\'t working, but they do in com

3条回答
  •  野趣味
    野趣味 (楼主)
    2021-01-17 23:38

    There's another config that if exist in web.config overrides Scott Hanselman's proposed fixes:

    
    

    ASP.NET browser capability sniffer could be configured in 3 ways (overrides each other):

    1. Machine wide in \Microsoft.NET\Framework\\CONFIG\Browsers
    2. Site only by using .browser files in App_Browsers folder
    3. Site only by using Element in web.config

    for IE10 add the following case under :

    
      frames=true
      tables=true
      cookies=true
      backgroundsounds=true
      vbscript=true
      javascript=true
      javaapplets=true
      activexcontrols=true
      tagwriter=System.Web.UI.HtmlTextWriter
      ecmascriptversion=3.0
      msdomversion=${major}${minor}
      w3cdomversion=1.0
      css1=true
      css2=true
      xml=true
    
      
        beta=true
      
      
        crawler=true
      
    
    

提交回复
热议问题