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.
但沒有別的。我想知道錨點的位置和方式?
謝謝!
我已經知道,但我想知道在哪裏定義了hrefs和鏈接本身。 – Rio 2009-09-14 15:37:04
@Rio:只要按照代碼...或者我不理解你的問題。 – 2009-09-14 17:23:26
那麼每個函數都不會完全向您展示每個ActionLink的構建方式? – Rio 2009-09-23 12:43:14