473,466 Members | 1,377 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

radiobuttonlist get selected value

Hello,
I have an aspx file where i've put a placeholder element. On load i create
dynamically a table which contains a checkbox and a radiobuttonlist in each
tablerow . The radiobuttonlist contains two items (yes,no). Both the
checkboxes and the radiobuttonlist are NOT autopostbacked ( .autopostback =
false). When i press the submit button a sub is run. My problem is that i can
not get the selected items in the radiobuttonlists.This is caused cos in the
page_load i call the sub that dinamically recreates the table described above
and so all values are reset (there is a rdb.item(0).selected=true line in my
code. If i try to remove it, the radiobuttons keep their values or not,after
each submit, without a pattern!). I've also tried to keep the values in a
collection, instasiated in the page_load but i couldn't do so cos the table
(that contains the checkboxes and radiobuttonlists) is not recognized at the
beggining of the page_load (i guess it's not an object yet cos the sub that
creates all that is at the end of page_load)....
Anyway...any ideas on how to get the selected item ? ? ? ?
thx a lot
theodore

Oct 25 '05 #1
3 4294
juststarter wrote:
Hello,
I have an aspx file where i've put a placeholder element.
There was no way for you to know it, but this is a classic asp newsgroup.
While you may be lucky enough to find a dotnet-knowledgeable person here who
can answer your question, you can eliminate the luck factor by posting your
question to a group where those dotnet-knowledgeable people hang out. I
suggest microsoft.public.dotnet.framework.aspnet.
On load i
create dynamically a table
Is this an html table or a datagrid?
which contains a checkbox and a
radiobuttonlist in each tablerow . The radiobuttonlist contains two
items (yes,no). Both the checkboxes and the radiobuttonlist are NOT
autopostbacked ( .autopostback = false). When i press the submit
button a sub is run. My problem is that i can not get the selected
items in the radiobuttonlists.This is caused cos in the page_load i
call the sub that dinamically recreates the table described above and
so all values are reset (there is a rdb.item(0).selected=true line in
my code. If i try to remove it, the radiobuttons keep their values or
not,after each submit, without a pattern!). I've also tried to keep
the values in a collection, instasiated in the page_load but i
couldn't do so cos the table (that contains the checkboxes and
radiobuttonlists) is not recognized at the beggining of the page_load
(i guess it's not an object yet cos the sub that creates all that is
at the end of page_load)....
Anyway...any ideas on how to get the selected item ? ? ? ?
thx a lot
theodore


I think the answer is that you need to create these checkboxes in either the
page_init event, or in the ItemCreated event if you are creating a datagrid
instead of an html table. But you should ask in the aspnet group to be sure.

Bob Barrows
PS. It never hurts to show a little code ...

--
Microsoft MVP - ASP/ASP.NET
Please reply to the newsgroup. This email account is my spam trap so I
don't check it very often. If you must reply off-line, then remove the
"NO SPAM"
Oct 25 '05 #2
Bob, thx for your time
I'll take your advice and post the message to the correspondent newsgroup (i
didn't understand this was for not.net.asp ;-) )

I tried to use the page_init event but it seems not to run at all (i'm sure
i'm doing something wrong.....)
Nevertheless,i send u a piece of my code...just in case.
The table i am creating is an html one.

In html code
--------------------
<asp:placeholder id="plh1" runat="server"> </asp:placeholder>

in vb code
--------------------
1. create the (html) table through code

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs)
Dim ID as integer = Request("ID")
call addControlsInPlaceholder()
End Sub
sub addControlsInPlaceholder
'create the table
dim oTable as new table
oTable.id="oTable"
oTable.GridLines=GridLines.None
'first add the titles of each column
dim lb1 as new label
dim lb2 as new label

dim cell1 as new TableHeaderCell
dim cell2 as new TableHeaderCell

cell1.width=unit.pixel(180)
cell2.width=unit.pixel(120)

dim row1 as new tablerow

lb1.text= Category"
lb2.text= "isDisplayed"

'add labels to cells
Cell1.controls.add(lb1)
Cell2.controls.add(lb2)

'add (header) cells to row
Row1.cells.add(Cell1)
Row1.cells.add(Cell2)
'add header row to table
otable.rows.add(Row1)

'fill the chkboxlist/radiobuttonlist(s) with items
Dim id As String
Dim subcListItem,subcListItem1,subcListItem2 As ListItem

Dim myConnection As New OdbcConnection(Application("strConnect"))
dim strSQL as string

strSQL = " SELECT ctg_id, ctg_name FROM categories ORDER BY ctg_id"
Dim myCommand As New OdbcCommand(strSQL, myConnection)
myConnection.Open()
Dim myReader As OdbcDataReader = myCommand.ExecuteReader()

while myReader.Read()
'create new Row for the table
dim oRow as new tableRow
'create 2 cells for the row
dim oCell1 as new tableCell
dim oCell2 as new tableCell
oCell1.width=unit.pixel(180)
oCell2.width=unit.pixel(120)

'create checkbox and add it cell1 (the first cell of each row)
dim chkboxlist as new checkbox
chkboxlist.id = "categories_" & myReader.Item("ctg_id").ToString
chkboxlist.text=myReader.Item("ctg_name").ToString
oCell1.controls.add(chkboxlist)

'create radiobuttonlist and add it cell2 (the second cell of each row)
dim rdbDisplayed as new radiobuttonlist
rdbDisplayed.RepeatDirection=repeatdirection.Horiz ontal
rdbDisplayed.id="cs_isDisplayed_" & myReader.Item("ctg_id").ToString

'add items in radiobuttonlists
subcListItem1 = New ListItem
subcListItem1.Text = "yes"
subcListItem1.Value = "1"
rdbDisplayed.Items.Add(subcListItem1)

subcListItem2 = New ListItem
subcListItem2.Text = "no"
subcListItem2.Value = "0"
rdbDisplayed.Items.Add(subcListItem2)
rdbDisplayed.items(0).selected=true

oCell2.controls.add(rdbDisplayed)
'add cells to row
oRow.cells.add(oCell1)
oRow.cells.add(oCell2)

'add row to table
otable.rows.add(oRow)
'increase counter i, to create new row
i = i +1

end while
'add table to placeholder
plh1.controls.add(oTable)

myCommand.dispose
myConnection.close

end sub
3. when the submit button is pressed ,i try something like

private sub submit_pressed

dim otable as new table
dim tr as new tablerow
dim tc as new tablecell
dim chk as checkbox
dim i,displayed as int16
dim rdbDisplayed,rdbAdult as radiobuttonlist

otable = ctype((plh1.controls(0)),table) 'plh1 is the placeholder in the
html code

for i = 1 to otable.rows.count-1

tr = otable.controls(i)
tc = tr.controls(0)
'tc.control(0) is a checkbox
chk = tc.controls(0)

'table cell
tc = tr.controls(1)
'tc.ctontrol(1) is a radiobuttonlist
rdbDisplayed = tc.controls(0)
'********************************
'the following always returns item(0) cos addControlsInPlaceholder has
already run before submit_pressed is engaged
displayed = rdbDisplayed.selecteditem.value
'********************************
if chk.checked = true then
'show displayed
end if

next

end sub

Oct 25 '05 #3
How are you trying to use Page_Init? To clarify what Bob said, it is here
you should be calling addControlsInPlaceholder, and not in Page_Load.

This page: http://www.15seconds.com/issue/020102.htm and the pages linked to
on this page: http://weblogs.asp.net/eporter/archi.../15/10109.aspx
might aid your understanding.

Jevon
"juststarter" <ju*********@discussions.microsoft.com> wrote in message
news:84**********************************@microsof t.com...
Bob, thx for your time
I'll take your advice and post the message to the correspondent newsgroup
(i
didn't understand this was for not.net.asp ;-) )

I tried to use the page_init event but it seems not to run at all (i'm
sure
i'm doing something wrong.....)
Nevertheless,i send u a piece of my code...just in case.
The table i am creating is an html one.

In html code
--------------------
<asp:placeholder id="plh1" runat="server"> </asp:placeholder>

in vb code
--------------------
1. create the (html) table through code

Private Sub Page_Load(ByVal sender As System.Object, ByVal e As
System.EventArgs)
Dim ID as integer = Request("ID")
call addControlsInPlaceholder()
End Sub
sub addControlsInPlaceholder
'create the table
dim oTable as new table
oTable.id="oTable"
oTable.GridLines=GridLines.None
'first add the titles of each column
dim lb1 as new label
dim lb2 as new label

dim cell1 as new TableHeaderCell
dim cell2 as new TableHeaderCell

cell1.width=unit.pixel(180)
cell2.width=unit.pixel(120)

dim row1 as new tablerow

lb1.text= Category"
lb2.text= "isDisplayed"

'add labels to cells
Cell1.controls.add(lb1)
Cell2.controls.add(lb2)

'add (header) cells to row
Row1.cells.add(Cell1)
Row1.cells.add(Cell2)
'add header row to table
otable.rows.add(Row1)

'fill the chkboxlist/radiobuttonlist(s) with items
Dim id As String
Dim subcListItem,subcListItem1,subcListItem2 As ListItem

Dim myConnection As New OdbcConnection(Application("strConnect"))
dim strSQL as string

strSQL = " SELECT ctg_id, ctg_name FROM categories ORDER BY ctg_id"
Dim myCommand As New OdbcCommand(strSQL, myConnection)
myConnection.Open()
Dim myReader As OdbcDataReader = myCommand.ExecuteReader()

while myReader.Read()
'create new Row for the table
dim oRow as new tableRow
'create 2 cells for the row
dim oCell1 as new tableCell
dim oCell2 as new tableCell
oCell1.width=unit.pixel(180)
oCell2.width=unit.pixel(120)

'create checkbox and add it cell1 (the first cell of each row)
dim chkboxlist as new checkbox
chkboxlist.id = "categories_" & myReader.Item("ctg_id").ToString
chkboxlist.text=myReader.Item("ctg_name").ToString
oCell1.controls.add(chkboxlist)

'create radiobuttonlist and add it cell2 (the second cell of each row)
dim rdbDisplayed as new radiobuttonlist
rdbDisplayed.RepeatDirection=repeatdirection.Horiz ontal
rdbDisplayed.id="cs_isDisplayed_" & myReader.Item("ctg_id").ToString

'add items in radiobuttonlists
subcListItem1 = New ListItem
subcListItem1.Text = "yes"
subcListItem1.Value = "1"
rdbDisplayed.Items.Add(subcListItem1)

subcListItem2 = New ListItem
subcListItem2.Text = "no"
subcListItem2.Value = "0"
rdbDisplayed.Items.Add(subcListItem2)
rdbDisplayed.items(0).selected=true

oCell2.controls.add(rdbDisplayed)
'add cells to row
oRow.cells.add(oCell1)
oRow.cells.add(oCell2)

'add row to table
otable.rows.add(oRow)
'increase counter i, to create new row
i = i +1

end while
'add table to placeholder
plh1.controls.add(oTable)

myCommand.dispose
myConnection.close

end sub
3. when the submit button is pressed ,i try something like

private sub submit_pressed

dim otable as new table
dim tr as new tablerow
dim tc as new tablecell
dim chk as checkbox
dim i,displayed as int16
dim rdbDisplayed,rdbAdult as radiobuttonlist

otable = ctype((plh1.controls(0)),table) 'plh1 is the placeholder in the
html code

for i = 1 to otable.rows.count-1

tr = otable.controls(i)
tc = tr.controls(0)
'tc.control(0) is a checkbox
chk = tc.controls(0)

'table cell
tc = tr.controls(1)
'tc.ctontrol(1) is a radiobuttonlist
rdbDisplayed = tc.controls(0)
'********************************
'the following always returns item(0) cos addControlsInPlaceholder has
already run before submit_pressed is engaged
displayed = rdbDisplayed.selecteditem.value
'********************************
if chk.checked = true then
'show displayed
end if

next

end sub

Oct 25 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

6
by: Hazzard | last post by:
I store radiobuttonlist values in the db using the string value of the radio button item value. (nvarchar) I am creating an edit functionality on the asp.net form so that when I reuse my...
2
by: Sean | last post by:
Hi .... I have a radiobutton list and a label in a webform. <asp:radiobuttonlist id="one" runat="server" CssClass="text" AutoPostBack="False" RepeatDirection="Horizontal"> <asp:ListItem...
3
by: William LaMartin | last post by:
If I create a RadioButtonList with, say, two items, then after the page loads and I select one of the items and then click on a button whose click event contains some code to display the...
5
by: DotNetGruven | last post by:
Anyone have any pointers on how to set the Value and Selected attributes in a ListItem in a RadioButtonList that is in a DataGrid? Here's what I have ------DataGrid------ -- BoundColumn 0 --...
0
by: Jay | last post by:
I have a radiobuttonlist like so <asp:RadioButtonList id=radType RepeatDirection="Horizontal" cellpadding="10" cellspacing="0" runat="server"><asp:ListItem value="Something1"><font...
4
by: Emil | last post by:
Can somebody tell me what would be the syntax for having an if statement and setting the selected index of a radiobuttonlist? This is my first project using ASP.net and I use C#. I have a repeater...
0
by: Luis Esteban Valencia | last post by:
http://www.codeproject.com/aspnet/DataGridCCEvents.asp#xx1009236xx Read this first and see if you can help me have tried but the Intelisense of the radiobuttonlist doestn have the event...
4
by: juststarter | last post by:
Hello, I have an aspx file where i've put a placeholder element. On load (page_load) i create dynamically an html table which contains a checkbox and a radiobuttonlist in each tablerow . The...
2
by: Michael Bohman | last post by:
Hi, i have a small problem with assigning a database value to a RadioButtonList control. On my form i have 3 user admin=1, premium=2 and basic=3, theese values is stored in an access database in a...
6
by: SAL | last post by:
hello, I'm using a radiobuttonlist in an updatepanel in an item template in a Gridview control. I'm populating the radiobuttonlist in the RowDataBound event. I have the control toolkit registered...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.