如何在asp.net mvc中将下拉列表中的值之一设置为selectedvalue?
我有一个带有值 -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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要指定 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.
尚未检查语法,但您可以在 get 控制器中执行类似的操作...
并且在您看来...
Haven't checked for syntax but you can do something like this in your get controller...
And in your view...