Tagged Questions

2
votes
1answer
869 views

UrlHelper extension method not working

I'm trying to add an extension method to my MVC 2 project without success and after several hours of googling and looking here I'm at a loss. I've created a brand new MVC 2 project to make sure there ...
0
votes
2answers
319 views

can't access to an extension method with UrlHelper parameter in controller! Vice versa in view have access

why defined extension method with UrlHelper don't added in Url.EXTENSIONMETHOD when i want to use it in controller! but i have access to it in view? public static string Home(this UrlHelper helper) { ...
0
votes
3answers
1k views

UrlHelper extension method call encoded not executed

I created a simple extension method for the ASP.NET MVC UrlHelper. It takes no arguments as its job is to look up the name of a stylesheet file from the configuration and return a url to the ...