ASP.NET MVC 下拉列表

发布于 2024-11-18 13:29:05 字数 181 浏览 2 评论 0原文

我正在对现有的 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 技术交流群。

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

发布评论

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

评论(1

焚却相思 2024-11-25 13:29:05

不,视图是您应该生成标记的唯一位置。

我的建议是编写这样的 JavaScript 片段:

 $(function(){ 
     $('#dropDownId').val(@Model.SelectedValue);
 });

它有效、简单、可维护,当然,速度也很快。

No, View is the only place where you should generate the markup.

My suggestion is to write a JavaScript snippet like this:

 $(function(){ 
     $('#dropDownId').val(@Model.SelectedValue);
 });

It's effective, easy, maintainable, and of course, fast.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文