asp.net-mvc
Html-Helfer
Suche…
Einführung
HTML-Helfer sind Methoden, mit denen HTML-Elemente in einer Ansicht dargestellt werden. Sie sind Teil des System.Web.Mvc.HtmlHelper
Namespaces.
Es gibt verschiedene Arten von HTML-Helfern:
Standard-HTML-Helfer : Sie werden zum Rendern von normalen HTML-Elementen verwendet, z. B. Html.TextBox()
.
Stark typisierte HTML-Helfer : Diese Helfer rendern HTML-Elemente basierend auf Modelleigenschaften, z. B. Html.TextBoxFor()
.
Benutzerdefinierte HTML-Helfer : Der Benutzer kann eine benutzerdefinierte Helper-Methode erstellen, die MvcHtmlString
.
Custom HTML Helper - Anzeigename
/// <summary>
/// Gets displayName from DataAnnotations attribute
/// </summary>
/// <typeparam name="TModel"></typeparam>
/// <typeparam name="TProperty"></typeparam>
/// <param name="htmlHelper"></param>
/// <param name="expression"></param>
/// <returns></returns>
public static MvcHtmlString GetDisplayName<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty>> expression)
{
var metaData = ModelMetadata.FromLambdaExpression(expression, htmlHelper.ViewData);
var value = metaData.DisplayName ?? (metaData.PropertyName ?? ExpressionHelper.GetExpressionText(expression));
return MvcHtmlString.Create(value);
}
Benutzerdefinierter Helfer - Übertragen Sie die Schaltfläche "Senden"
/// <summary>
/// Creates simple button
/// </summary>
/// <param name="poHelper"></param>
/// <param name="psValue"></param>
/// <returns></returns>
public static MvcHtmlString SubmitButton(this HtmlHelper poHelper, string psValue)
{
return new MvcHtmlString(string.Format("<input type=\"submit\" value=\"{0}\">", psValue));
}
Vollständige Liste der HtmlHelper-Beispiele einschließlich HTML-Ausgabe
HtmlHelper.Action()
-
@Html.Action(actionName: "Index")
Ausgabe: Der HTML-Code, der von einer Aktionsmethode namensIndex()
gerendert wird.
-
@Html.Action(actionName: "Index", routeValues: new {id = 1})
Ausgabe: Der HTML-Code, der von einer Aktionsmethode namensIndex(int id)
gerendert wird.
-
@(Html.Action("Index", routeValues: new RouteValueDictionary(new Dictionary<string, object>{ {"id", 1} })))
Ausgabe: Der HTML-Code, der von einer Aktionsmethode namensIndex(int id)
gerendert wird.
-
@Html.Action(actionName: "Index", controllerName: "Home")
Ausgabe: Der HTML-HomeController
von einer Aktionsmethode namensIndex()
imHomeController
-
@Html.Action(actionName: "Index", controllerName: "Home", routeValues: new {id = 1})
Ausgabe: Der HTML-Code, der von einer Aktionsmethode namensIndex(int id)
imHomeController
-
@Html.Action(actionName: "Index", controllerName: "Home", routeValues: new RouteValueDictionary(new Dictionary<string, object>{ {"id", 1} }))
Ausgabe: Der HTML-Code, der von einer Aktionsmethode namensIndex(int id)
imHomeController
HtmlHelper.ActionLink()
-
@Html.ActionLink(linkText: "Click me", actionName: "Index")
Ausgabe:<a href="Home/Index">Click me</a>
-
@Html.ActionLink(linkText: "Click me", actionName: "Index", routeValues: new {id = 1})
Ausgabe:<a href="Home/Index/1">Click me</a>
-
@Html.ActionLink(linkText: "Click me", actionName: "Index", routeValues: new {id = 1}, htmlAttributes: new {@class = "btn btn-default", data_foo = "bar")
Ausgabe:<a href="Home/Index/1" class="btn btn-default" data-foo="bar">Click me</a>
-
@Html.ActionLink()
Ausgabe:<a href=""></a>
@HtmlHelper.BeginForm()
-
@using (Html.BeginForm("MyAction", "MyController", FormMethod.Post, new {id="form1",@class = "form-horizontal"}))
Ausgabe:<form action="/MyController/MyAction" class="form-horizontal" id="form1" method="post">
Standard-HTML-Helfer mit ihren HTML-Ausgaben
-
@Html.TextBox("Name", null, new { @class = "form-control" })
output:<input class="form-control" id="Name"name="Name"type="text"value=""/>
-
@Html.TextBox("Name", "Stack Overflow", new { @class = "form-control" })
output:<input class="form-control" id="Name"name="Name"type="text" value="Stack Overflow"/>
-
@Html.TextArea("Notes", null, new { @class = "form-control" })
output:<textarea class="form-control" id="Notes" name="Notes" rows="2" cols="20"></textarea>
-
@Html.TextArea("Notes", "Please enter Notes", new { @class = "form-control" })
output:<textarea class="form-control" id="Notes" name="Notes" rows="2" cols="20" >Please enter Notes</textarea>
-
@Html.Label("Name","FirstName")
output:<label for="Name"> FirstName </label>
-
@Html.Label("Name", "FirstName", new { @class = "NameClass" })
output:<label for="Name" class="NameClass">FirstName</label>
-
@Html.Hidden("Name", "Value")
output:<input id="Name" name="Name" type="hidden" value="Value" />
-
@Html.CheckBox("isStudent", true)
output:<input checked="checked" id="isStudent" name="isStudent" type="checkbox" value="true" />
-
@Html.Password("StudentPassword")
output:<input id="StudentPassword" name="StudentPassword" type="password" value="" />
Benutzerdefinierter Helfer - Rendern Sie das Optionsfeld mit Beschriftung
public static MvcHtmlString RadioButtonLabelFor<TModel, TProperty>(this HtmlHelper<TModel> self, Expression<Func<TModel, TProperty>> expression, bool value, string labelText)
{
// Retrieve the qualified model identifier
string name = ExpressionHelper.GetExpressionText(expression);
string fullName = self.ViewContext.ViewData.TemplateInfo.GetFullHtmlFieldName(name);
// Generate the base ID
TagBuilder tagBuilder = new TagBuilder("input");
tagBuilder.GenerateId(fullName);
string idAttr = tagBuilder.Attributes["id"];
// Create an ID specific to the boolean direction
idAttr = string.Format("{0}_{1}", idAttr, value);
// Create the individual HTML elements, using the generated ID
MvcHtmlString radioButton = self.RadioButtonFor(expression, value, new { id = idAttr });
MvcHtmlString label = self.Label(idAttr, labelText);
return new MvcHtmlString(radioButton.ToHtmlString() + label.ToHtmlString());
}
Beispiel: @Html.RadioButtonLabelFor(m => m.IsActive, true, "Yes")
Benutzerdefinierter Helfer - Datumsauswahl
public static MvcHtmlString DatePickerFor<TModel, TProperty>(this HtmlHelper<TModel> htmlHelper, Expression<Func<TModel, TProperty>> expression, object htmlAttributes)
{
var sb = new StringBuilder();
var metaData = ModelMetadata.FromLambdaExpression(expression, htmlHelper.ViewData);
var dtpId = "dtp" + metaData.PropertyName;
var dtp = htmlHelper.TextBoxFor(expression, htmlAttributes).ToHtmlString();
sb.AppendFormat("<div class='input-group date' id='{0}'> {1} <span class='input-group-addon'><span class='glyphicon glyphicon-calendar'></span></span></div>", dtpId, dtp);
return MvcHtmlString.Create(sb.ToString());
}
Beispiel:
@Html.DatePickerFor(model => model.PublishedDate, new { @class = "form-control" })
Wenn Sie Bootstrap.v3.Datetimepicker verwenden
$('#dtpPublishedDate').datetimepicker({ format: 'MMM DD, YYYY' });
Modified text is an extract of the original Stack Overflow Documentation
Lizenziert unter CC BY-SA 3.0
Nicht angeschlossen an Stack Overflow