Event for Razor

Jul 18, 2012 at 2:50 PM

hi

i need to know how to make the title in event date showing if the date showing after 1 month i try to take the code from MVC but not working

is there anyway to do it?

thnx

Coordinator
Jul 18, 2012 at 10:48 PM

I'm note sure what you mean but perhaps something like this?

@if(DateTime.Now.Subtract(Model.EventDate) > TimeSpan.FromMonths(1))
{
<h1>@Model.EventDate</h1>