Exemple #1
0
 public static MvcHtmlString ActionLinkExternal(this HtmlHelper helper, Uri URI, Uri label, string target = "_self", string prefix = null)
 {
     return(helper.ActionLinkExternal(URI != null ? URI.ToString() : "", label != null ? label.ToString() : "", target, prefix));
 }
Exemple #2
0
 public static MvcHtmlString ActionLinkExternal(this HtmlHelper helper, Uri URI, string label, string target = "_self")
 {
     return(helper.ActionLinkExternal(URI != null ? URI.ToString() : "", label, target, null));
 }