| c# Programming Glossary: htmlattributesASP.Net MVC RouteData and arrays http://stackoverflow.com/questions/1752721/asp-net-mvc-routedata-and-arrays  string action string controller object routeData object htmlAttributes var urlHelper new UrlHelper helper.ViewContext.RequestContext.. href href builder.MergeAttributes new RouteValueDictionary htmlAttributes builder.SetInnerText text return builder.ToString TagRenderMode.Normal.. 
 HTML.ActionLink method http://stackoverflow.com/questions/200476/html-actionlink-method    string actionName   object values   object htmlAttributes ASP.NET MVC2 two arguments have been switched around Html.ActionLink..   string controllerName   object values   object htmlAttributes ASP.NET MVC3 arguments are in the same order as MVC2 however.. 
 TextBoxFor rendering to HTML with prefix on the ID attribute http://stackoverflow.com/questions/2051985/textboxfor-rendering-to-html-with-prefix-on-the-id-attribute  TProperty expression string validationMessage object htmlAttributes  return ValidationMessageFor htmlHelper prefix expression validationMessage.. expression validationMessage new RouteValueDictionary htmlAttributes public static MvcHtmlString ValidationMessageFor TModel TProperty.. string validationMessage IDictionary string object htmlAttributes  return htmlHelper.ValidationMessage String.Format 0 . 1 prefix.. 
 |