I'm working on dealy deal web site, based on asp.net mvc... I have problem with countdown timers where in my list of deals first countdown work fine, but others counters don't, when I refresh pages timer shows me new time
Situation: Created PartialView and I render inside deal with @Html.RenderAction In PartialView I pass DealID parameter to get StartTime and EndTime from database
/jquery code I put on Layout page
any help?? Why counters on other deals don't counting??
public ActionResult _CountDown(int Id)
{
var data = db.Deals.Single(x => x.DealId == Id);
vmTimer dl = new vmTimer();
dl.DealDateStart = data.StartTime;
dl.DealDateEnd = data.EndTime;
ViewBag.deal = dl;
return PartialView("_CountDown", dl);
}