如何在asp.net mvc中将下拉列表中的值之一设置为selectedvalue?

发布于 2024-08-03 20:44:23 字数 107 浏览 7 评论 0原文

我有一个带有值 -1,1,2 和文本 A,B,C 的下拉列表,我想在加载页面时默认将 B 设置为 selectedValue。

可以在页面级别(即 aspx 或 ascx)完成的操作。

I have a dropdownlist with values -1,1,2 and text A,B,C i wanna set B as selectedValue by default when the page is loaded.

Something which can be done at the Page Level i.e in aspx or ascx.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

番薯 2024-08-10 20:44:23

您需要指定 html“select”标签的“selected”属性。

一种选择是 - 自行渲染选择标签。

第二 - 确保您形成正确的 SelectItemList (下拉列表的“数据源”) - 它必须包含一项 .Selected=true 的项目。

You need to specify "selected" attribute of html "select" tag.

One option is - render select tag on your own.

Second - make sure that you form correct SelectItemList ('datasource' for your dropdownlist) - it must contain one item with .Selected=true.

紫南 2024-08-10 20:44:23

尚未检查语法,但您可以在 get 控制器中执行类似的操作...

ViewData[ddlItems] = new SelectList(new List<string>() { "1", "1", "2", "A", "B", "C"}, "B");

并且在您看来...

<%= Html.DropDownList("ddlItems", (SelectList)ViewData[ddlItems], String.Empty, null)%>

Haven't checked for syntax but you can do something like this in your get controller...

ViewData[ddlItems] = new SelectList(new List<string>() { "1", "1", "2", "A", "B", "C"}, "B");

And in your view...

<%= Html.DropDownList("ddlItems", (SelectList)ViewData[ddlItems], String.Empty, null)%>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文