I have some code on an aspx page where I'm embedding tags such as this:
<td><%= row.DateFrom.StandardFormat %></td>
<td><%= row.DateTo.StandardFormat %></td>
I have included the namespace on the page like this:
<%@ Import Namespace="Utilities" %>
<%@ Import Namespace="Utilities.ExtensionMethods" %>
This is obviously pretty trivial, and I can work around it in this case, but it irks me that this doesn't work. I want to know why.