Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a div with a Partial View on it which i render using RenderAction(). I am using Asp.Net MVC 4.0.

My problem is and it happens only on IE(version 9) , when i go to some other page and click the back button on IE, the partial view is not rendered. The partial View section is blank. Even on Firefox, the Action is not called, but at least the Partial View is rendered (its not blank)

Is there any solution to this ?

UPDATE

 @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>
share|improve this question
Typically, the back button on browsers just shows what it did previously. It depends on what your partial looks like. What is it outputting? – ventaur Dec 31 '12 at 6:45
I have updated with the html.. Thanks – user636525 Dec 31 '12 at 6:57

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.