ASP.net MVC html вспомогательные расширения? - PullRequest
1 голос
/ 11 сентября 2009

Кто-нибудь знает, где я смогу найти определения html-помощника (LinkExtensions) в ASP.net MVC? Я пытаюсь создать собственное расширение для ActionLinks и хочу построить его на основе того, что уже существует. LinkExtensions (из метаданных) дает мне только:

    public static string ActionLink(this HtmlHelper htmlHelper, string linkText, string actionName);
    //
    // Summary:
    //     Returns an anchor tag containing the virtual path to the specified action.
    //
    // Parameters:
    //   htmlHelper:
    //     The HTML helper.
    //
    //   linkText:
    //     The inner text of the anchor tag.
    //
    //   actionName:
    //     The name of the action.
    //
    //   routeValues:
    //     An object containing the parameters for a route. The parameters are retrieved
    //     via reflection by examining the properties of the object. Typically created
    //     using object initializer syntax.
    //
    // Returns:
    //     An anchor tag.

но не более того. Я хочу знать, где и как строятся якоря?

Спасибо!

1 Ответ

3 голосов
/ 11 сентября 2009
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...