Reputation: 4692
Does anyone know how to make a radiobuttonlist appears horizontally with text on the bottom, in ASP.Net?
. . .
Option 1 Option 2 Option 3
Upvotes: 1
Views: 4823
Reputation: 1921
Set the RepeatDirection
attribute to Horizontal
. This will only work if RepeatLayout
is set to Table
, which it is by default.
Upvotes: 2