Created
January 23, 2011 02:28
-
-
Save azcoov/791748 to your computer and use it in GitHub Desktop.
Complex Route Link
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Html.RouteLink(Html.Encode(!String.IsNullOrEmpty(item.Title) ? item.Title : "No Title..."), "BlogPost2", | |
new { | |
year = item.Published.Year, | |
month = item.Published.Month, | |
day = item.Published.Day, | |
title = Html.Encode(item.Title) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment