I have a slightly customized version of the LabelFor() Html Helper found in the MVC2 sources. When I use it in a view I get an "Ambiguous Invocation" error - which makes perfect sense given that my also retains the signature of the original.
LabelFor<TModel, TValue>(this HtmlHelper<TModel> html,
Expression<Func<TModel, TValue>> expression)
Is there a way to set up a using/import alias within the view?
Edit: Unfortunately this suggests it's not possible. It looks like creating extension methods with identical method names and signatures works in general but apparently not in aspx templates.