blah blah blah is here! blah blah » Close

1
votes
2 answers

What is the right approach?

btab
30

Hi I have a problem, I'm doing a asp.net website for a wash-house. The idea is for people to be able to book a time for washing. I have choosed to use a radiobuttonlist and made it like a table with monday to sunday as headertext, see b ...

1
votes
1 answers

foreach on Controls (RadioButtonList) on a .ascx page.

I'm trying to cycle through all of my RadioButtonLists and store their selected values into a list. [code] List<string> responseList = new List<string>(); foreach (Control c in this.Controls) { if (c is R ...

1
votes
1 answers

Is it possible to add a dropdownlist inside the radiobuttonlist as an item?

Is it possible to add a dropdownlist inside the radiobuttonlist as an item? if so how? Thanks!

1
votes
0 answers

creating radiobuttonlist programatically

I am displaying a checkBoxList on my form. This checkBoxList gets it items (goals) from a data source. So depending on the data in the dataSource, it gets a different number of items ( goal check boxes) each time. For each goal check box in ...

Feedback