예제 #1
0
 public static MvcHtmlString ThemeActionLink(this HtmlHelper htmlHelper, string linkText, string actionName, string controllerName, string protocol, string hostName, string fragment, object routeValues, object htmlAttributes)
 {
     return(htmlHelper.ThemeActionLink(linkText, actionName, controllerName, protocol, hostName, fragment, TypeHelper.ObjectToDictionary(routeValues), HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes)));
 }
예제 #2
0
 public static MvcHtmlString ThemeActionLink(this HtmlHelper htmlHelper, string linkText, string actionName, RouteValueDictionary routeValues, IDictionary <string, object> htmlAttributes)
 {
     return(htmlHelper.ThemeActionLink(linkText, actionName, null, routeValues, htmlAttributes));
 }
예제 #3
0
 public static MvcHtmlString ThemeActionLink(this HtmlHelper htmlHelper, string linkText, string actionName, object routeValues, object htmlAttributes)
 {
     return(htmlHelper.ThemeActionLink(linkText, actionName, null, TypeHelper.ObjectToDictionary(routeValues), HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes)));
 }
예제 #4
0
 public static MvcHtmlString ThemeActionLink(this HtmlHelper htmlHelper, string linkText, string actionName, RouteValueDictionary routeValues)
 {
     return(htmlHelper.ThemeActionLink(linkText, actionName, null, routeValues, new RouteValueDictionary()));
 }
예제 #5
0
 public static MvcHtmlString ThemeActionLink(this HtmlHelper htmlHelper, string linkText, string actionName, string controllerName)
 {
     return(htmlHelper.ThemeActionLink(linkText, actionName, controllerName, new RouteValueDictionary(), new RouteValueDictionary()));
 }
예제 #6
0
 public static MvcHtmlString ThemeActionLink(this HtmlHelper htmlHelper, string linkText, string actionName, object routeValues)
 {
     return(htmlHelper.ThemeActionLink(linkText, actionName, null, TypeHelper.ObjectToDictionary(routeValues), new RouteValueDictionary()));
 }