0

RenderAction() を使用してレンダリングする部分ビューを含む div があります。Asp.Net MVC 4.0 を使用しています。

私の問題は、IE(バージョン9)でのみ発生することです。他のページに移動してIEの戻るボタンをクリックすると、部分ビューがレンダリングされません。部分ビュー セクションは空白です。Firefox でもアクションは呼び出されませんが、少なくとも部分ビューはレンダリングされます (空白ではありません)。

これに対する解決策はありますか?

アップデート

 @foreach (var item in Model)
 {    
         <article style="margin-top: 10px;">
             <h5>
                 @item.Title
             </h5>
             <span >
                 <time>
                     @item.FromDateMonth
                 </time>-
             <time>
                 @item.ToDateMonth
             </time>
             </span>
             <div style="margin-top:10px;">
                 @Html.Label("Notes:", new { @style = "color: #000000; font-size: 13px; font-weight: bold; line-height: 16px;" })
                 <span style="color: #000000; font-size: 13px; font-weight: normal; line-height: 16px;">
                     @item.Notes
                 </span>
             </div>

         </article>
4

0 に答える 0