vote up 0 vote down star

Ok. This is probably a really stupid question, but I'm going to ask it anyway...

How can I use extensions and utility methods in my ASP.Net markup? For example, (say) I have a DateTime extension method called "ToExampleString()" (contained in the DateTimeExtensions class in my Common.Extensions project) and I want to use it in my markup in the ListView's ItemTemplate:

<ItemTemplate>
    <span><%# ((DateTime)Eval("DateStarted")).ToExampleString() %></span>
</ItemTemplate>

I'm getting the following error:

'System.DateTime' does not contain a definition for 'ToExampleString' and no extension method 'ToExampleString' accepting a first argument of type 'System.DateTime' could be found (are you missing a using directive or an assembly reference?)

The page simply can't see the extensions method.

Similarly, how do I make my page's markup aware of a utility class:

<span><%# ExampleUtility.ProcessDate(Eval("DateStarted") %></span>

What steps do I need to take to make this stuff work? I assume I'm overlooking something stupidly obvious?

Thanks

flag

80% accept rate

4 Answers

vote up 2 vote down check
<%@ Import Namespace="Common.Extensions" %>

I believe you can do that for all your markups in the web.config.

link|flag
Thanks Yuriy. I have a "using Common.Extensions" statement in my code behind. Should that be working? – Milky Joe Oct 19 at 16:07
No, I believe you also need to place it in the markup. – Yuriy Faktorovich Oct 19 at 16:09
The using statement in code behind allows your code behind class to see the extension methods, but you have to import the namespace in the markup file as well. – Pawel Krakowiak Oct 19 at 16:09
Thanks for your help. – Milky Joe Oct 19 at 17:36
vote up 2 vote down

You need to import the namespace either at the top of the page as others have said

<%@ Import Namespace="Common.Extensions"%>

Or globally in your web.config

<system.web>
  <pages>
    <namespaces>
      <add namespace="Common.Extensions"/>
    </namespaces>
  </pages>
</system.web>
link|flag
Thanks for the extra web.config information! – Milky Joe Oct 19 at 17:35
vote up 2 vote down

You have to import the namespace, at the top of the page:

<%@ Import Namespace="Common.Extensions"%>
link|flag
vote up 1 vote down

Namespaces?

You should add using/import directive in aspx markup

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.