2 часа спустя и всего 4 часа здесь:
public static class MyHelpers
{
private static Dictionary<string, object> SourceMetadata = new Dictionary<string, object> { { "HtmlHelper", typeof(MenuHelper).FullName } };
public static MvcSiteMapNode GetNodeByKey(this MvcSiteMapHtmlHelper helper, string nodeKey)
{
SiteMapNode node = helper.Provider.FindSiteMapNodeFromKey(nodeKey);
var mvcNode = node as MvcSiteMapNode;
return mvcNode;
}
}
Теперь все, что вам нужно сделать, это вызвать @ Html.MvcSiteMap (). GetNodeByKey ("mykey"). Url
Доступны не только URL-адреса, но и все другие свойства (title, ImageUrl, targetFrame ..), а также можно создать помощника для записи полной ссылки привязки с использованием URL-адреса и заголовка.
ОБНОВЛЕНО: Если вам интересно, вот код помощника ссылки:
public static MvcHtmlString MapLink(this MvcSiteMapHtmlHelper htmlHelper, string nodeKey)
{
return htmlHelper.MapLink(nodeKey, null, null);
}
public static MvcHtmlString MapLink(this MvcSiteMapHtmlHelper htmlHelper, string nodeKey, string linkText)
{
return htmlHelper.MapLink(nodeKey, linkText, null);
}
public static MvcHtmlString MapLink(this MvcSiteMapHtmlHelper htmlHelper, string nodeKey, string linkText, object htmlAttributes)
{
MvcSiteMapNode myNode = GetNodeByKey(htmlHelper, nodeKey);
//we build the a tag
TagBuilder builder = new TagBuilder("a");
// Add attributes
builder.MergeAttribute("href", myNode.Url);
if (htmlAttributes != null)
{
builder.MergeAttributes(new RouteValueDictionary(htmlAttributes), true);
}
if (!string.IsNullOrWhiteSpace(linkText))
{
builder.InnerHtml = linkText;
}
else
{
builder.InnerHtml = myNode.Title;
}
string link = builder.ToString();
return MvcHtmlString.Create(link);
}