문제

I am using a Radio Button List in my app with 2 options. In the page, it is displayed in 2 different lines(one below the other). Can we display it in a single line?

도움이 되었습니까?

해결책

Just set RepeatDirection property to of the radiobuttonlist' to"Horizontal"`

<asp:RadioButtonList RepeatDirection="Horizontal " runat="server">
Some Content
</asp:RadioButtonList > 

By default, RepeatDirection is set to Vertical. Setting this property to Horizontal will render the list horizontally.

MSDN Refrence

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top