I have got the date field in my db , What I want to do is find the date difference betwwen current date and the date of the product created(which is in db) . For instance if the product date is 22/08/2012 and current date is 15/07/2011 therfore the difference is 38 days , After calculating the difference once should check the logic and display the action link according to it ,
The logic is fixed and simple:
If(dateDifference > 5 )
{ show Actionfilter }
else
{
hide Actionfilter}
Action filter in the view
<p> <%= Html.ActionLink("Pay by Cheque", "PayByChecque", "Booking", null, new { id = "paycheque", @class ="test" })%></p>
Any help or suggestion will be appreciated.
I was thinking of doing the calculation in the controller and pass it through view bag to the jquery like:
$('#paycheque').hide();
$('Viewbag.difference').value > 5{
$("#showdiv").show();
else
$("#showdiv").hide();
});
But I am struggling with calculating the difference