Hi all,
I'm using the latest CTP3 Preview and having problems with the Html.RouteLink entension...
Here's my code:
//Edit user details
routes.MapRoute(
"UserProfileEdit",
"user/profile/edit",
new { controller = "user", action = "profileedit" }
); <%= Html.RouteLink("Edit your profile", "UserProfileEdit") %>
It seems to just render the link with an empty href atrribute... am I doing something wrong?
Also, I notice that the Default.aspx route has been removed and the Default.aspx page has a redirect to "~/Home" in the code behind, is this going to be the norm?
Thanks,
Charles