to jest dziwne. Widzę odniesienia do @ Html.Button (), ale kiedy piszę, że Intellisense nie znajduje takiego pomocnika ... jest lista rozwijana, ukryte, edytory itp., Ale nie ma przycisku!
o co chodzi?
to jest dziwne. Widzę odniesienia do @ Html.Button (), ale kiedy piszę, że Intellisense nie znajduje takiego pomocnika ... jest lista rozwijana, ukryte, edytory itp., Ale nie ma przycisku!
o co chodzi?
Odpowiedzi:
public static class HtmlButtonExtension { public static MvcHtmlString Button(this HtmlHelper helper, string innerHtml, object htmlAttributes) { return Button(helper, innerHtml, HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes) ); } public static MvcHtmlString Button(this HtmlHelper helper, string innerHtml, IDictionary<string, object> htmlAttributes) { var builder = new TagBuilder("button"); builder.InnerHtml = innerHtml; builder.MergeAttributes(htmlAttributes); return MvcHtmlString.Create(builder.ToString()); } }
źródło
@Html.Button("ButtonText", new {Name = "name", Value = "value" })
formatu, dodaj tę klasę:public static MvcHtmlString Button(this HtmlHelper helper, string text, object htmlAttributes) { return Button(helper, text, HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes)); }
HtmlHelper.AnonymousObjectToHtmlAttributes
wcześniej nie widziałem ?Od wersji MVC Preview 3 nie ma pomocnika przycisku (nie MVC3)
wspominano o nim sporo w przeszłości, na przykład: http://blog.wekeroad.com/blog/aspnet-mvc-preview-using-the-mvc-ui-helpers/ jednak skręcenie własnego jest trywialne - mam podstawy gdzieś tutaj będę musiał go wykopać, ale zasadniczo po prostu utworzę nowy Html.ButtonFor i skopiuj kod źródłowy z Html.LabelFor i zmień wyjście, aby utworzyć tag input type = "button".
źródło
Aby rozwinąć zaakceptowaną odpowiedź , aby można było powiązać przycisk przesyłania z właściwością modelu, ale mieć inny tekst:
@Html.ButtonFor(m => m.Action, Model.LabelForCurrentAction(), new { @class = "btn btn-primary btn-large", type = "submit" })
Używając następującej nieco zmodyfikowanej
Button
klasy pomocniczej :/// <summary> /// Via /programming/5955571/theres-no-html-button /// </summary> public static class HtmlButtonExtension { public static MvcHtmlString Button(this HtmlHelper helper, object innerHtml, object htmlAttributes) { return helper.Button(innerHtml, HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes)); } public static MvcHtmlString Button(this HtmlHelper helper, object innerHtml, IDictionary<string, object> htmlAttributes) { var builder = new TagBuilder("button") { InnerHtml = innerHtml.ToString() }; builder.MergeAttributes(htmlAttributes); return MvcHtmlString.Create(builder.ToString()); } public static MvcHtmlString ButtonFor<TModel, TField>(this HtmlHelper<TModel> html, Expression<Func<TModel, TField>> property, object innerHtml, object htmlAttributes) { // lazily based on TextAreaFor var attrs = HtmlHelper.AnonymousObjectToHtmlAttributes(htmlAttributes); var name = ExpressionHelper.GetExpressionText(property); var metadata = ModelMetadata.FromLambdaExpression(property, html.ViewData); string fullName = html.ViewContext.ViewData.TemplateInfo.GetFullHtmlFieldName(name); ModelState modelState; if (html.ViewData.ModelState.TryGetValue(fullName, out modelState) && modelState.Errors.Count > 0) { if( !attrs.ContainsKey("class") ) attrs["class"] = string.Empty; attrs["class"] += " " + HtmlHelper.ValidationInputCssClassName; attrs["class"] = attrs["class"].ToString().Trim(); } var validation = html.GetUnobtrusiveValidationAttributes(name, metadata); if(null != validation) foreach(var v in validation) attrs.Add(v.Key, v.Value); string value; if (modelState != null && modelState.Value != null) { value = modelState.Value.AttemptedValue; } else if (metadata.Model != null) { value = metadata.Model.ToString(); } else { value = String.Empty; } attrs["name"] = name; attrs["Value"] = value; return html.Button(innerHtml, attrs); } }
źródło
MVC5, Bootstrap w wersji 3.2.0
@Html.ActionLink ( linkText: " Remove", actionName: "Index", routeValues: null, // or to pass some value -> routeValues: new { id = 1 }, htmlAttributes: new { @class = "btn btn-success btn-sm glyphicon glyphicon-remove" } )
Spowoduje to wygenerowanie linku, który wygląda jak przycisk.
źródło
Wygląda na to, że Razor nie ma pomocnika HTML „Przycisk”. Najprawdopodobniej znajdziesz odniesienia do niestandardowego rozszerzenia pomocnika HTML.
Zobacz tutaj: http://www.asp.net/mvc/tutorials/creating-custom-html-helpers-cs
źródło