填充下拉列表的最佳方法是什么?

发布于 2024-10-07 20:08:07 字数 87 浏览 2 评论 0原文

您好,我正在开发一个 ASP.NET Web 应用程序。我有 3 个出生日期下拉列表(日期、月份和年份)。哪种方法最适合填充下拉列表:Java 脚本或隐藏代码。

Hi I am developing a asp.net web application. I am having 3 drop down(date, month and year) list for date of birth. Which approach is best to populate drop down list: Java script or code behind.

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

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

发布评论

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

评论(1

栩栩如生 2024-10-14 20:08:07
  1. 如果您在后面的代码中执行此操作,则每次都必须向页面传递更多信息。

  2. 如果您在浏览器上执行此操作,您将无法在回发时自动提取控件中的值。

就我个人而言,我会在代码后面完成它。在服务器端使用起来更容易,并且在这种情况下数据传输损失很小。

  1. If you do it in the code behind, you have to pass more information to the page each time.

  2. If you do it on the browser, you won't be able to automatically pull the values in the controls on post back.

Personally, I would do it in code behind. It's easier to work with on the server side, and the data transfer penalty is minimal in this instance.

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