使用“分页”创建动态文本框;
基于此处的解决方案:从“无限制”动态控件将值输入数据库
我可以在运行时成功创建动态 asp.net 控件。 因此,如果用户输入 10,则显示 10 个文本框,如果用户输入 50,则显示 50。到目前为止,效果还不错。 但是 50 个文本框会使页面变得很长。
我应该如何并排显示文本框? 分页是个好主意吗?
based on the solution here: Entering values into database from 'unlimited' dynamic controls
i could successfully create dynamic asp.net controls at runtime. so if the user enters 10, it displays 10 textboxes and if the user enters 50 it displays 50. so far it's good. but 50 textboxes would make the page very lengthy.
how should i display the textboxes side-by-side? is paging a good idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可滚动的 div 将是更好的选择。
将所有文本框渲染为具有固定高度和宽度的 div 的子级,并将 oveflow 属性设置为 auto。
A scrollable div would be a better option.
Render all the textboxes as children of a div with fixed height and width and set oveflow property to auto.