ASP.NET MVC 下拉列表
我正在对现有的 ASP.NET MVC 1 应用程序进行一些更改,其中有一个带有下拉列表的表单,该列表将所有 50 个状态硬编码到 HTML 中。填写表格后,用户可以稍后返回并编辑他们的信息。我想做到这一点,以便在编辑屏幕上,数据库中已有的值获得该状态的“选定”属性。我能想到的唯一方法是在服务器上构建 html 并将其发送到视图,有更好的做法吗?
I am making some changes to already existing ASP.NET MVC 1 app where there is a form with a dropdown list that has all 50 states hard coded into the HTML. After filling out the form the user can later go back and edit their information. I want to make it so that on the edit screen the value that is already in the DB gets the "selected" attribute for the state. The only way I can think to do this is to build the html on the server and send it down to the view, is there a better practice?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,视图是您应该生成标记的唯一位置。
我的建议是编写这样的 JavaScript 片段:
它有效、简单、可维护,当然,速度也很快。
No, View is the only place where you should generate the markup.
My suggestion is to write a JavaScript snippet like this:
It's effective, easy, maintainable, and of course, fast.