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)); }
public static MvcHtmlString ActionLinkExternal(this HtmlHelper helper, Uri URI, string label, string target = "_self") { return(helper.ActionLinkExternal(URI != null ? URI.ToString() : "", label, target, null)); }