我正在使用 VS2012 使用 ASP.NET MVC 4.0,我的应用程序在 Chrome 和 Firefox 中正确显示,但在 IE8 及更高版本中无法正确显示。我在应用程序中使用 mvc PagedList 控件和noty 警报消息插件都在 Chrome 和 Firefox 中正确显示,但在 IE 版本中没有正确显示。
这是我的代码:
<table border="0">
<tr>
<td>Page @(Model.PageCount < Model.PageNumber ? 0 : Model.PageNumber) of @Model.PageCount</td>
<td>
@Html.PagedListPager(Model, page => Url.Action("Index", new { page }).Normalize(), PagedListRenderOptions.ClassicPlusFirstAndLast)
</td>
</tr>
</table>