Tagged Questions
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 ...