本文整理汇总了C#中Models.EncodedLink方法的典型用法代码示例。如果您正苦于以下问题:C# Models.EncodedLink方法的具体用法?C# Models.EncodedLink怎么用?C# Models.EncodedLink使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Models
的用法示例。
在下文中一共展示了Models.EncodedLink方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Href
/// <summary>
/// Retourne l'url pour atteindre la page du produit
/// </summary>
/// <remarks>
/// il faut passer le produit en paramètre, dans une boucle foreach il faudra passer "item"
/// </remarks>
/// <example>
/// <code><![CDATA[
/// <%=Html.Href(product)%>
/// ]]></code>
/// </example>
/// <param name="helper">The helper.</param>
/// <param name="product">The product.</param>
/// <returns></returns>
public static string Href(this UrlHelper helper, Models.Product product)
{
return helper.RouteERPStoreUrl(ERPStoreRoutes.PRODUCT, new { code = product.EncodedCode(), name = product.EncodedLink() });
}
示例2: ProductLink
/// <summary>
/// Retourne un element html anchor permettant d'atteindre la page du produit
/// </summary>
/// <remarks>
/// il faut passer le produit en paramètre, dans une boucle foreach il faudra passer "item"
/// si l'on veut afficher un titre different de celui du produit il faut utiliser cette methode
/// </remarks>
/// <example>
/// <code>
/// <![CDATA[
/// <%=Html.ProductLink(product, "titre du produit")%>
/// ]]>
/// </code>
/// </example>
/// <param name="helper">The helper.</param>
/// <param name="product">The product.</param>
/// <param name="title">The title.</param>
/// <returns>element html anchor</returns>
public static MvcHtmlString ProductLink(this HtmlHelper helper, Models.Product product, string title)
{
return new MvcHtmlString(helper.RouteERPStoreLink(title, ERPStoreRoutes.PRODUCT, new { code = product.EncodedCode(), name = product.EncodedLink()}));
}