2009-09-10 179 views
1

有沒有人知道我能在ASP.net MVC中找到html helper(LinkExtensions)的定義?我正在嘗試爲ActionLink創建自己的擴展,並且我想根據已經存在的內容來構建它。 LinkExtensions(來自元數據)只給我:ASP.net MVC html助手擴展?

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. 

但沒有別的。我想知道錨點的位置和方式?

謝謝!

回答