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?
companyvariable come from? – Darin Dimitrov Mar 23 '11 at 9:30company.CustomerNois just an internal variable, type of string. – Markus Wolters May 6 '11 at 11:13