radiobuttonlist formatting

Ask a Question related to ASP.NET General, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. RadioButtonList
      Maybe you can help me with the following logic I am trying to accomplish. My RadioButtonList is in datagrid <EditItemTemplate> column If my...
    3. 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...
    4. 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...
    5. radiobuttonlist and javascript??
      in your page load function add the following: RadioButtonListName.Attributes.Add("onclick", "return JavascriptFunctionName()"); radiobuttonlist...
  3. #2

    Default 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,
    >-----Original Message-----
    >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!
    >.
    >
    Leif Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139