HtmlHelperSelectExtensions.ListBox 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
ListBox(IHtmlHelper, String) |
返回 的多 |
ListBox(IHtmlHelper, String, IEnumerable<SelectListItem>) |
返回 的多 |
ListBox(IHtmlHelper, String)
返回 的多expression
选<选择>元素。 基于具有全名的ViewData条目添加<选项>元素。 如果选项 (null
非) 或Text与中找到的第一个<非null
值匹配,则向Value选项>添加“selected”属性:具有全名的ModelState条目,或expression
针对 Model求值的 。
有关“全名”的详细信息,请参阅 Name(String) 。
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ ListBox(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ expression);
public static Microsoft.AspNetCore.Html.IHtmlContent ListBox (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string expression);
static member ListBox : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function ListBox (htmlHelper As IHtmlHelper, expression As String) As IHtmlContent
参数
- htmlHelper
- IHtmlHelper
IHtmlHelper此方法扩展的实例。
- expression
- String
相对于当前模型的表达式名称。
返回
包含 <select> 元素的新 IHtmlContent 。
注解
HtmlFieldPrefix合并 和 expression
以设置 <select> 元素的“name”属性。
expression
清理以设置元素的“id”属性。
具有全名的 ViewData 条目必须是对象的非null
集合 SelectListItem 。
适用于
ListBox(IHtmlHelper, String, IEnumerable<SelectListItem>)
返回 的多expression
选<选择>元素。 基于 selectList
添加<选项>元素。 如果选项 (null
非) 或Text与中找到的第一个<非null
值匹配,则向Value选项>添加“selected”属性:ModelState具有全名的条目、ViewData (全名项(除非使用 而不是 selectList
) )或expression
针对 Model计算的 。
有关“全名”的详细信息,请参阅 Name(String) 。
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ ListBox(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ expression, System::Collections::Generic::IEnumerable<Microsoft::AspNetCore::Mvc::Rendering::SelectListItem ^> ^ selectList);
public static Microsoft.AspNetCore.Html.IHtmlContent ListBox (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string expression, System.Collections.Generic.IEnumerable<Microsoft.AspNetCore.Mvc.Rendering.SelectListItem> selectList);
static member ListBox : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * seq<Microsoft.AspNetCore.Mvc.Rendering.SelectListItem> -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function ListBox (htmlHelper As IHtmlHelper, expression As String, selectList As IEnumerable(Of SelectListItem)) As IHtmlContent
参数
- htmlHelper
- IHtmlHelper
IHtmlHelper此方法扩展的实例。
- expression
- String
相对于当前模型的表达式名称。
- selectList
- IEnumerable<SelectListItem>
对象的集合SelectListItem,用于使用 <optgroup> 和 <option> 元素填充 <select> 元素。 如果 null
为 ,则 ViewData 使用具有全名的条目,并且该条目必须是 对象的集合 SelectListItem 。
返回
包含 <select> 元素的新 IHtmlContent 。
注解
HtmlFieldPrefix合并 和 expression
以设置 <select> 元素的“name”属性。
expression
清理以设置元素的“id”属性。