I just updated the references on my current web project from System.Web.MVC 2.0 to 3.0 and now some calls to "Routelink" are not working anymore.

Piece of code:

public static string ObjectLink(this HtmlHelper htmlHelper, object portalObject)
{
    UrlHelper urlHelper = new UrlHelper(htmlHelper.ViewContext.RequestContext);

    string link = urlHelper.RouteUrl("Providers", new { customerno = company.CustomerNumber });

It just gives me NULL or while debugging says "no anonymous types allowed". Hmm? What's going on?

link|improve this question
Where does the company variable come from? – Darin Dimitrov Mar 23 '11 at 9:30
@Darin company.CustomerNo is just an internal variable, type of string. – Markus Wolters May 6 '11 at 11:13
Can you post the route registration that you expect this to match? – Josh May 17 '11 at 19:50
What Josh said. I am having a similar problem. I have a feeling it has something to do with optional parameters in my case - when not specified, instead of the parameters being optional and not used, the route just isn't recognized, but when I specify values for them, it works fine >:( – jamiebarrow Jun 15 '11 at 12:12
I am having the same issue. Do you have T4MVC in your project? – Jason Wicker Sep 29 '11 at 21:52
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.