I previously had a php function on our webpage that would open up registration for an event at a specific predetermined date. For example,\[code\] <?php $close_date = strtotime("2012-04-19"); $todays_date = strtotime(date("Y-m-d")); if ($close_date > $todays_date) { ?> <p>(Registration Link Here)</p> <?php } ?>\[/code\]Now I am being forced to migrate our entire website over to a CMS system, Ingeniux, which doesn't handle PHP to my understanding but does handle ASP. But I have no experience in ASP coding. Is there a simple function that can mimic the PHP function I have included?Thanks.