Ask a Question related to ASP.NET General, Design and Development.
-
Mike P #1
radiobuttonlist formatting
How do I manage to format a radiobuttonlist so that if for example I
have 3 options, I can put a text box to the right of each option? The
radiobutton list doesn't seem to accept any html inbetween it which I
would normally use for formatting (TR, TD etc).
Any assistance would be much appreciated.
Cheers,
Mike
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
Mike P Guest
-
Repeater + RadioButtonList
Hello I need some help... I have a repeater; its source is a dataview based on a datatable of a dataset. The aspx page creates a... -
RadioButtonList
Maybe you can help me with the following logic I am trying to accomplish. My RadioButtonList is in datagrid <EditItemTemplate> column If my... -
databinding Radiobuttonlist
Can anyone help me, how do I bind a radiobuttonlist to a field in my datagrid? (in VB) I have searched google and found loads of info but nothing... -
radiobuttonlist and javascript
hi I have a checkbox and a radiobuttonlist (the radiobuttonlist contains 2 items) in my form. The radiobuttonlist has its visible property set to... -
radiobuttonlist and javascript??
in your page load function add the following: RadioButtonListName.Attributes.Add("onclick", "return JavascriptFunctionName()"); radiobuttonlist... -
Leif #2
radiobuttonlist formatting
i think i accomplished what you want with the following:
<asp:RadioButtonList id="RadioButtonList1" runat="server">
<asp:ListItem Value="1">Item 1 <input
type=text></asp:ListItem>
<asp:ListItem Value="2">Item 2 <input
type=text></asp:ListItem>
</asp:RadioButtonList>
hope that helps,for example I>-----Original Message-----
>How do I manage to format a radiobuttonlist so that ifoption? The>have 3 options, I can put a text box to the right of eachinbetween it which I>radiobutton list doesn't seem to accept any html***>would normally use for formatting (TR, TD etc).
>
>Any assistance would be much appreciated.
>
>
>Cheers,
>
>Mike
>
>
>
>*** Sent via Developersdex [url]http://www.developersdex.com[/url]>Don't just participate in USENET...get rewarded for it!
>.
>Leif Guest



Reply With Quote

