0

IE10で動作しないASP.NET1.1アプリがあります。どこかに移動しようとすると、空白の画面が表示されます。空白の画面のhtmlは次のようになります。

<asp_smartnav_rdir url="/MyWebFormName.aspx"/>

.NET 2から4で同様の問題のように聞こえる修正を確認しましたが、.NET1.1にはApp_Browsersフォルダーがありません。

4

1 に答える 1

0

The workaround that I settled on for this issue is to simply disable smart navigation. I wasn't using those features anyway. I'm not sure why it's broken in IE10 and not other browsers, but I can live without it.

I disabled it by setting smartNavigation="False" in the @Page directive of my aspx pages. It can also be programmatically set in the aspx.cs file by overriding the OnInit method and setting this.SmartNavigation = false.

于 2012-11-15T18:45:24.963 に答える