PagedList不适用于IE,但适用于Chrome和Firefox

时间:2014-02-27 13:18:08

标签: c# internet-explorer asp.net-mvc-4 pagedlist

我在使用VS2012的ASP.NET MVC 4.0中工作,我的应用程序在Chrome和Firefox中正确显示,但在IE8及以上版本中没有正确显示。我在应用程序中使用mvc PagedList控件和noty alert message plugin都在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>

enter image description here

1 个答案:

答案 0 :(得分:1)

尝试在视图顶部添加<!DOCTYPE html>。这可能有用!