asp.net mvc 4 - data displays erroneously after five minutes -
i have mvc site after ~5 minutes, alters how displays string data on partial. data should read:
new auto - 36 months , rate
... after 5 minutes displays:
up 36 months
i unable reproduce issue in testing or local versions of code. if upload dll, reverts proper display, 5 minutes.
any thoughts on overcome issue appreciated.
edit (added code) display part partial:
@model afcuresponsive.rateviewer <div class="col"> <h5>featured rates</h5> <form method="post" action=""> <div class="tabber"> <ul class="tabs list-unstyled"> <li class="selected"><a href="#tab1">loans</a></li> <li><a href="#tab2">deposits</a></li> </ul> <!-- loans tab --> <div class="tab" id="tab1"> @foreach (var item in model.featuredratesloan()) { <div class="rate"> <span class="left">@item.loanname <br /></span> <span class="right"> low <span class="percent">@item.apr_wdd % apr*</span></span> </div> <!-- end of rate --> } </div> <!-- end of tab --> <!-- deposits tab --> <div class="tab" id="tab2"> @foreach (var item in model.featuredratesdeposit()) { <div class="rate"> <span class="left">@item.accountname <br /></span> <span class="right"><span class="percent">@item.apy.tostring("n2") % apy*</span></span> </div> <!-- end of rate --> } </div> <!-- end of tab --> <div class="rate" style="margin:11px 0 0;"> <a class="btn" href="@url.content("~/appleweb/rates")" onclick="_gaq.push(['_trackevent', 'home page', 'cta btn ', 'see_all_rates'])">see rates</a> </div> </div> <!-- end of tabber --> </form> </div>
thanks @codecaster questions. in order:
how build string "new auto - 36 months"?
this string database pull. it's 1 field, fact it's choosing edit why i'm leaning towards framework.
how determine changes after 5 minutes? refresh page, or automagically remove "new auto -" part?
i've timed page after upload of new dll , hit refresh until text disappears ~ 5 minutes.
does happen in browsers, users, on machines?
yes, although don't have macs 'round here. browserstack.
Comments
Post a Comment