Is it possible to do something like this inline in an ASPX page?
<%= Me.SomeExtensionMethod() %>
I can\'t seem to figure out how to g
If it's working in the codebehind, add the namespace to the function call:
<%=MyNamespace.ExtensionFcn("hello, world") %>
I'd do this before I'd modify the web.config.
Adding imports in the namespace works for me!
<%@ Import Namespace="Foo.FooFoo" %>
Try closing the .aspx
page and opening it up again as per this answer. If that improves things at all (e.g. enable intellisense) but doesn't solve it, please post any new errors you get.
You could also add the Public
modifier to your Module
or class
definition. If you're using Modules, it really doesn't make sense to me that it would be required, but some discussion on this forum indicates that it might help.