如何告诉 RadioButtonList 不生成表格
当我设置 RadioButtonList 时,它会为其创建一个表格布局,但我不想要这个......我该如何摆脱它?
这可能是重复的,但我已经搜索过但没有找到这样的问题。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
当我设置 RadioButtonList 时,它会为其创建一个表格布局,但我不想要这个......我该如何摆脱它?
这可能是重复的,但我已经搜索过但没有找到这样的问题。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
您必须更改
RepeatLayout
属性并将其设置为Flow
可能会产生您正在搜索的结果。在这里查看所有其他
RepeatLayout
选项:http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.repeatlayout.aspx
有点傻,4.0 框架仍然默认丑陋的表格变体,我主要恢复到
UnorderedList
变体。You'll have to change the
RepeatLayout
property and setting it toFlow
will probably yield the result you are searching for.Take a look at all the other
RepeatLayout
options here:http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.repeatlayout.aspx
Kinda silly the 4.0 framework still defaults the ugly table variant, I mostly revert to the
UnorderedList
variant.